Skip to content

Instantly share code, notes, and snippets.

@liquorice
Created November 19, 2013 00:33
Show Gist options
  • Save liquorice/7538042 to your computer and use it in GitHub Desktop.
Save liquorice/7538042 to your computer and use it in GitHub Desktop.
SASS prefixer mixin
// Usage:
// @include prefix(transform-origin, 0 0 0, webkit o moz);
@mixin prefix($property, $value, $prefixes) {
@each $prefix in $prefixes {
-#{$prefix}-#{$property}: $value;
}
#{$property}: $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment