Skip to content

Instantly share code, notes, and snippets.

@intelliweb
Last active December 16, 2015 05:39
Show Gist options
  • Save intelliweb/5385814 to your computer and use it in GitHub Desktop.
Save intelliweb/5385814 to your computer and use it in GitHub Desktop.
CSS: style form input placeholder
input::-webkit-input-placeholder { /* Webkit - Yes, double :: is correct! */
color: #eaeaea;
}
input:-moz-placeholder { /* Firefox 4-18 */
color: #eaeaea;
}
input::-moz-placeholder{ /* Firefox 19+ */
color: #eaeaea;
}
input:-ms-input-placeholder { /* IE 10+ */
color: #eaeaea;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment