Skip to content

Instantly share code, notes, and snippets.

@triple-j
Last active September 8, 2015 19:23
Show Gist options
  • Save triple-j/603d39f23e3e6b588abe to your computer and use it in GitHub Desktop.
Save triple-j/603d39f23e3e6b588abe to your computer and use it in GitHub Desktop.
@mixin input-placeholder {
&::-webkit-input-placeholder {
@content;
}
&:-moz-placeholder { // Firefox 18-
@content;
}
&::-moz-placeholder { // Firefox 19+
@content;
}
&:-ms-input-placeholder { // IE
@content;
}
&::-ms-input-placeholder { // Edge
@content;
}
&::placeholder {
@content;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment