Skip to content

Instantly share code, notes, and snippets.

@maxxscho
Created April 22, 2016 08:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxxscho/18439bfba846d8d20ffdba5e5afe2ce3 to your computer and use it in GitHub Desktop.
Save maxxscho/18439bfba846d8d20ffdba5e5afe2ce3 to your computer and use it in GitHub Desktop.
Mixin for styling the placeholder attribute on form fields
// Usage
// @include placeholder {
// font-style:italic;
// color: white;
// font-weight:100;
// }
@mixin placeholder {
::-webkit-input-placeholder {@content}
:-moz-placeholder {@content}
::-moz-placeholder {@content}
:-ms-input-placeholder {@content}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment