Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created November 24, 2012 19:22
Show Gist options
  • Save zastrow/4141085 to your computer and use it in GitHub Desktop.
Save zastrow/4141085 to your computer and use it in GitHub Desktop.
For vendor prefixes that are required for both the property and the value || e.g. transform or animation
@mixin double-prefix ($prop, $val...) {
-webkit-#{$prop}:-webkit-#{$val};
-moz-#{$prop}: -moz-#{$val};
#{$prop}: #{$val};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment