Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active August 29, 2015 14:15
Show Gist options
  • Save Kcko/02ee76d774598b7de2b5 to your computer and use it in GitHub Desktop.
Save Kcko/02ee76d774598b7de2b5 to your computer and use it in GitHub Desktop.
Placeholder mixin
$placeholders: '-webkit-input-placeholder',
'-moz-placeholder',
'-ms-input-placeholder';
@mixin placeholder {
@each $placeholder in $placeholders {
@if $placeholder == "-webkit-input-placeholder" {
&::#{$placeholder} {
@content;
}
}
@else if $placeholder == "-moz-placeholder" {
// FF 18-
&:#{$placeholder} {
@content;
}
// FF 19+
&::#{$placeholder} {
@content;
}
}
@else {
&:#{$placeholder} {
@content;
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment