Skip to content

Instantly share code, notes, and snippets.

@bchapuis
Created May 14, 2012 12:40
Show Gist options
  • Save bchapuis/2693725 to your computer and use it in GitHub Desktop.
Save bchapuis/2693725 to your computer and use it in GitHub Desktop.
Less: mixin for placeholder color
.placeholder(@color) {
&::-webkit-input-placeholder {
color: @color;
}
&:-moz-placeholder {
color: @color;
}
}
@julestruong
Copy link

Does it work with IE ?

@madrus
Copy link

madrus commented Jul 27, 2016

Not under IE 10. You could add these two:

&::-moz-placeholder { /* Firefox 19+ */
    color: @color;
}
&:-ms-input-placeholder { /* IE 10+ */
    color: @color;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment