Skip to content

Instantly share code, notes, and snippets.

@zachshallbetter
Last active December 18, 2015 11:38
Show Gist options
  • Save zachshallbetter/5776768 to your computer and use it in GitHub Desktop.
Save zachshallbetter/5776768 to your computer and use it in GitHub Desktop.
SASS mixin for html5 placeholder text
// SCSS mixin for html5 placeholder text.
// Based on Codesnippits article http://css-tricks.com/snippets/css/style-placeholder-text/
//
// @include placeholder {
/* css properties */
//}
@mixin placeholder {
&:-moz-placeholder { @content }
&::-webkit-input-placeholder { @content }
&:-ms-input-placeholder { @content }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment