Skip to content

Instantly share code, notes, and snippets.

@daogurtsov
Created May 24, 2013 21:19
Show Gist options
  • Save daogurtsov/5646587 to your computer and use it in GitHub Desktop.
Save daogurtsov/5646587 to your computer and use it in GitHub Desktop.
SCSS placeholder mixin
@mixin placeholder{
&.placeholder { @content }
&:-moz-placeholder { @content }
&::-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