Skip to content

Instantly share code, notes, and snippets.

@williamdodson
Last active December 18, 2015 12:48
Show Gist options
  • Save williamdodson/5785186 to your computer and use it in GitHub Desktop.
Save williamdodson/5785186 to your computer and use it in GitHub Desktop.
A Sass mixin to easily style placeholder text
// placeholder styling (use: @include placeholder(#e5e5e5);)
@mixin placeholder($color){
&::-webkit-input-placeholder {
color: $color;
}
&:-moz-placeholder { /* Firefox < 18 */
color: $color;
opacity: 1;
}
&::-moz-placeholder { /* Firefox >= 19 */
color: $color;
opacity: 1;
}
&:-ms-input-placeholder {
color: $color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment