Last active
December 24, 2015 00:18
-
-
Save pixelchar/6715466 to your computer and use it in GitHub Desktop.
Style placeholder text in browsers that support it.
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
| ::-webkit-input-placeholder { | |
| color: #ccc; | |
| } | |
| /* Firefox 18- */ | |
| :-moz-placeholder { | |
| color: #ccc; | |
| } | |
| /* Firefox 19+ */ | |
| ::-moz-placeholder { | |
| color: #ccc; | |
| } | |
| :-ms-input-placeholder { | |
| color: #ccc; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment