Skip to content

Instantly share code, notes, and snippets.

@bolmaster2
Created February 26, 2013 15:45
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 bolmaster2/5039453 to your computer and use it in GitHub Desktop.
Save bolmaster2/5039453 to your computer and use it in GitHub Desktop.
Use a mixin to style placeholder input text cross browser
// use one mixin for styling placeholder input text cross browser
@mixin placeholder ($color) {
/* WebKit browsers */
::-webkit-input-placeholder {
color: $color;
}
/* Mozilla Firefox 4 to 18 */
input:-moz-placeholder,
textarea:-moz-placeholder {
color: $color;
}
/* Mozilla Firefox 19+ */
::-moz-placeholder {
color: $color;
}
/* Internet Explorer 10+ */
:-ms-input-placeholder {
color: $color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment