Skip to content

Instantly share code, notes, and snippets.

@curiositry
Created August 28, 2013 18:39
Show Gist options
  • Save curiositry/6369637 to your computer and use it in GitHub Desktop.
Save curiositry/6369637 to your computer and use it in GitHub Desktop.
The code needed to style HTML5 input placeholder text.
::-webkit-input-placeholder { /* WebKit browsers */
color: #555;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
color: #555;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
color: #555;
}
:-ms-input-placeholder { /* Internet Explorer 10+ */
color: #555;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment