Skip to content

Instantly share code, notes, and snippets.

@zastrow
Created November 24, 2012 19:23
Show Gist options
  • Save zastrow/4141089 to your computer and use it in GitHub Desktop.
Save zastrow/4141089 to your computer and use it in GitHub Desktop.
SASS mixing for standard vendor prefixes
@mixin prefix ($prop, $val...){
-webkit-#{$prop}:#{$val};
-moz-#{$prop}:#{$val};
#{$prop}:#{$val};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment