Last active
December 16, 2015 05:39
-
-
Save intelliweb/5385814 to your computer and use it in GitHub Desktop.
CSS: style form input placeholder
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
input::-webkit-input-placeholder { /* Webkit - Yes, double :: is correct! */ | |
color: #eaeaea; | |
} | |
input:-moz-placeholder { /* Firefox 4-18 */ | |
color: #eaeaea; | |
} | |
input::-moz-placeholder{ /* Firefox 19+ */ | |
color: #eaeaea; | |
} | |
input:-ms-input-placeholder { /* IE 10+ */ | |
color: #eaeaea; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment