Created
August 31, 2010 15:59
-
-
Save marioestrada/559253 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*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