Skip to content

Instantly share code, notes, and snippets.

@heroheman
Created October 17, 2012 19:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • 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