Skip to content

Instantly share code, notes, and snippets.

@martinwolf
Created May 10, 2013 13:38
Show Gist options
  • Save martinwolf/5554438 to your computer and use it in GitHub Desktop.
Save martinwolf/5554438 to your computer and use it in GitHub Desktop.
SCSS: Mixin: Placeholder Color
@mixin placeholder($color) {
&::-webkit-input-placeholder {
color: $color;
}
&:-moz-placeholder {
color: $color;
}
&:-ms-input-placeholder {
color: $color;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment