Skip to content

Instantly share code, notes, and snippets.

@marioestrada
Created August 31, 2010 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marioestrada/559253 to your computer and use it in GitHub Desktop.
Save marioestrada/559253 to your computer and use it in GitHub Desktop.
/*remove the webkit orange/light-blue border around text-inputs and textareas */
input:focus, textarea:focus{
outline: none;
}
/*remove the ugly dotted borders around links in firefox*/
a:focus{
outline: none;
}
/*remove the webkit resizing icon in the bottom right of any textarea*/
textarea{
resize: none;
}
/*remove the textarea's vertical scrollbar in IE6, IE7, IE8*/
textarea{
overflow: auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment