Skip to content

Instantly share code, notes, and snippets.

@DougSisk
Created February 13, 2014 16:08
Show Gist options
  • Save DougSisk/8977964 to your computer and use it in GitHub Desktop.
Save DougSisk/8977964 to your computer and use it in GitHub Desktop.
Saas placeholder mixin
@mixin placeholder {
&::-webkit-input-placeholder {
@content;
}
&:-moz-placeholder { /* Firefox 18- */
@content;
}
&::-moz-placeholder { /* Firefox 19+ */
@content;
}
&:-ms-input-placeholder {
@content;
}
&.placeholder { /* for use with jQuery placeholder plugin: https://github.com/mathiasbynens/jquery-placeholder */
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment