Skip to content

Instantly share code, notes, and snippets.

@meandavejustice
Created October 23, 2013 22:40
Show Gist options
  • Save meandavejustice/7128134 to your computer and use it in GitHub Desktop.
Save meandavejustice/7128134 to your computer and use it in GitHub Desktop.
a mixin for styling html placeholders
// placeholder styles
.placeholder(@color:inherit, @background: inherit) {
::-webkit-input-placeholder {
color: @color;
background: @background;
}
:-moz-placeholder { /* Firefox 18- */
color: @color;
background: @background;
}
::-moz-placeholder { /* Firefox 19+ */
color: @color;
background: @background;
}
:-ms-input-placeholder {
color: @color;
background: @background;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment