Skip to content

Instantly share code, notes, and snippets.

@chrisblackwell
Created October 23, 2012 13:00
Show Gist options
  • Save chrisblackwell/3938601 to your computer and use it in GitHub Desktop.
Save chrisblackwell/3938601 to your computer and use it in GitHub Desktop.
SASS Vendor Prefixes
@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