Created
April 23, 2014 03:08
-
-
Save blooski/11201617 to your computer and use it in GitHub Desktop.
Change Placeholder color
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
/* Change Placeholder color */ | |
::-webkit-input-placeholder { /* WebKit browsers */ | |
color: #000; | |
} | |
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ | |
color: #000; | |
} | |
::-moz-placeholder { /* Mozilla Firefox 19+ */ | |
color: #000; | |
} | |
:-ms-input-placeholder { /* Internet Explorer 10+ */ | |
color: #000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment