Skip to content

Instantly share code, notes, and snippets.

@SaraSoueidan
Created July 26, 2013 18:23
Show Gist options
  • Save SaraSoueidan/6091087 to your computer and use it in GitHub Desktop.
Save SaraSoueidan/6091087 to your computer and use it in GitHub Desktop.
@mixin placeholder-color($color){
&.placeholder{
color: $color
}
&:-moz-placeholder{
color: $color
}
&::-webkit-input-placeholder{
color: $color
}
&:-ms-input-placeholder{
color: $color
}
}
/* Usage */
input{
@include placeholder-color(#FA4A4A)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment