Skip to content

Instantly share code, notes, and snippets.

@erikjoens
Last active June 27, 2016 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikjoens/f12ddad7f683380fb513d6b7fa2adc83 to your computer and use it in GitHub Desktop.
Save erikjoens/f12ddad7f683380fb513d6b7fa2adc83 to your computer and use it in GitHub Desktop.
Style placeholder text, cross-browser
::-webkit-input-placeholder { /* Webkit, blink, edge */
/* ... */
}
:-moz-placeholder { /* Firefox 4-18 */
opacity: 1;
/* ... */
}
::-moz-placeholder { /* Firefox 19+ */
opacity: 1;
/* ... */
}
:-ms-input-placeholder { /* IE 10-11 */
/* ... */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment