Skip to content

Instantly share code, notes, and snippets.

@the-architect
Created June 21, 2014 10:06
Show Gist options
  • Save the-architect/7ded9734589b2b817812 to your computer and use it in GitHub Desktop.
Save the-architect/7ded9734589b2b817812 to your computer and use it in GitHub Desktop.
Style HTML5 placeholder text
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