Created
June 21, 2014 10:06
-
-
Save the-architect/7ded9734589b2b817812 to your computer and use it in GitHub Desktop.
Style HTML5 placeholder text
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
body{ | |
// unfortunately we need to enter each of these browser specific selectors | |
::-webkit-input-placeholder { font-style:italic; } | |
:-moz-placeholder { font-style:italic; } | |
::-moz-placeholder { font-style:italic; } | |
:-ms-input-placeholder { font-style:italic; } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment