Skip to content

Instantly share code, notes, and snippets.

@pixelchar
Last active December 24, 2015 00:18
Show Gist options
  • Select an option

  • Save pixelchar/6715466 to your computer and use it in GitHub Desktop.

Select an option

Save pixelchar/6715466 to your computer and use it in GitHub Desktop.
Style placeholder text in browsers that support it.
::-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