Skip to content

Instantly share code, notes, and snippets.

@jhilden
jhilden / input-placeholder_mixin.sass
Created April 16, 2011 08:43
A SASS mixin to set all the different (pseudo-) classes to style the color of placeholder text in e.g. an input field. What other styles besides color would be interesting?
@mixin input-placeholder($color)
&.placeholder
color: $color
&:-moz-placeholder
color: $color
&::-webkit-input-placeholder
color: $color