Skip to content

Instantly share code, notes, and snippets.

@artlung
Created May 27, 2014 22:53
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 artlung/f012fc87153c446703af to your computer and use it in GitHub Desktop.
Save artlung/f012fc87153c446703af to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<input type="" placeholder="hello" />
// ----
// Sass (v3.3.7)
// Compass (v1.0.0.alpha.18)
// ----
@mixin placeholderstyle() {
color: red;
}
input::-webkit-input-placeholder {
@include placeholderstyle()
}
input:-moz-placeholder {
@include placeholderstyle()
}
input::-moz-placeholder {
@include placeholderstyle()
}
input:-ms-input-placeholder {
@include placeholderstyle()
}
input::-webkit-input-placeholder {
color: red;
}
input:-moz-placeholder {
color: red;
}
input::-moz-placeholder {
color: red;
}
input:-ms-input-placeholder {
color: red;
}
<input type="" placeholder="hello" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment