Created
August 14, 2012 04:27
-
-
Save patocallaghan/3346228 to your computer and use it in GitHub Desktop.
Style form input/textarea placeholder text #css #placeholder #textarea #input
This file contains 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
/* From http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css */ | |
::-webkit-input-placeholder { | |
color: #999; | |
} | |
:-moz-placeholder { | |
color: #999; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment