Skip to content

Instantly share code, notes, and snippets.

@dieppon
Last active August 29, 2015 13:56
Show Gist options
  • Save dieppon/9248264 to your computer and use it in GitHub Desktop.
Save dieppon/9248264 to your computer and use it in GitHub Desktop.
Style HTML5 placeholders with this mixin.
// Placeholder
@mixin placeholder {
&:-moz-placeholder { @content; }
&::-moz-placeholder { @content; }
&:-ms-input-placeholder{ @content; }
&::-webkit-input-placeholder { @content; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment