Showing posts with label chrome. Show all posts
Showing posts with label chrome. Show all posts

Friday, March 23, 2012

Solved: Chrome Error 139 (net::ERR_TEMPORARILY_THROTTLED)

  1. Open: chrome://net-internals/#httpThrottling
  2. Uncheck the checkbox.
  3. Be happy ASAP.

Tuesday, January 31, 2012

Layout Jumps Left If Vertical Scrollbar Appears - HOW TO FIX IN CSS

Looks good in IE (5.5 <= 8 beta), FF (2,3), Chrome and Opera.
html {
  overflow-y: scroll;
}

Monday, January 16, 2012

Remove Yellow Border Hover from Input Boxes in Chrome

input[type="text"], input[type="password"], textarea, select { 
  outline: none;
}