Skip to content

Instantly share code, notes, and snippets.

@b4z81
Created December 11, 2013 15:34
Show Gist options
  • Save b4z81/7912503 to your computer and use it in GitHub Desktop.
Save b4z81/7912503 to your computer and use it in GitHub Desktop.
vendor prefixing
@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