Skip to content

Instantly share code, notes, and snippets.

@rtivital
Last active January 18, 2016 18:36
Show Gist options
  • Select an option

  • Save rtivital/60195e45fcbbdf50cf4f to your computer and use it in GitHub Desktop.

Select an option

Save rtivital/60195e45fcbbdf50cf4f to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<input type="email" placeholder="example@gmail.com" class="input">
// ----
// libsass (v3.3.2)
// ----
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
.input {
@include placeholder {
color: red;
}
}
@include placeholder {
color: blue;
}
.input::-webkit-input-placeholder {
color: red;
}
.input:-moz-placeholder {
color: red;
}
.input::-moz-placeholder {
color: red;
}
.input:-ms-input-placeholder {
color: red;
}
::-webkit-input-placeholder {
color: blue;
}
:-moz-placeholder {
color: blue;
}
::-moz-placeholder {
color: blue;
}
:-ms-input-placeholder {
color: blue;
}
<input type="email" placeholder="example@gmail.com" class="input">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment