Skip to content

Instantly share code, notes, and snippets.

@leandrocustodio
Created April 18, 2017 16:42
Show Gist options
  • Save leandrocustodio/a38cbeb1d542d3d35d3f1a00e64b0b06 to your computer and use it in GitHub Desktop.
Save leandrocustodio/a38cbeb1d542d3d35d3f1a00e64b0b06 to your computer and use it in GitHub Desktop.
Mixin: Customize placeholder with less
.placeholder(@rules){
&::-webkit-input-placeholder{
@rules();
}
&:-moz-placeholder{
@rules();
}
&::-moz-placeholder{
@rules();
}
&:-ms-input-placeholder{
@rules();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment