Skip to content

Instantly share code, notes, and snippets.

@heroheman
Created October 17, 2012 19:33
Show Gist options
  • Save heroheman/3907611 to your computer and use it in GitHub Desktop.
Save heroheman/3907611 to your computer and use it in GitHub Desktop.
SASS: Vendorize Mixin
@mixin vendorize($property, $value) {
-webkit-#{$property}: $value;
-moz-#{$property}: $value;
-ms-#{$property}: $value;
-o-#{$property}: $value;
#{$property}: $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment