Skip to content

Instantly share code, notes, and snippets.

@neutraltone
Last active October 23, 2016 18:02
Show Gist options
  • Save neutraltone/44992ce744f6cbc3dc5f2904c8d5fb7a to your computer and use it in GitHub Desktop.
Save neutraltone/44992ce744f6cbc3dc5f2904c8d5fb7a to your computer and use it in GitHub Desktop.
Placeholder Mixin
// placeholder styling
@mixin placeholder($color) {
::-webkit-input-placeholder {
color: $color;
}
::-moz-placeholder {
color: $color;
}
:-ms-input-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