Skip to content

Instantly share code, notes, and snippets.

@jivinivan
Created February 2, 2014 20:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jivinivan/8774741 to your computer and use it in GitHub Desktop.
Save jivinivan/8774741 to your computer and use it in GitHub Desktop.
@mixin vendorize($property, $value) {
-webkit-#{$property}: $value;
-moz-#{$property}: $value;
-ms-#{$property}: $value;
-o-#{$property}: $value;
#{$property}: $value;
}
// Usage
// @include vendorize(PROPERTY,VALUE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment