Skip to content

Instantly share code, notes, and snippets.

@cpjolicoeur
Created March 7, 2013 14:02
Show Gist options
  • Save cpjolicoeur/5108252 to your computer and use it in GitHub Desktop.
Save cpjolicoeur/5108252 to your computer and use it in GitHub Desktop.
SCSS placeholder color mixin
@mixin input-placeholder-color($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