Skip to content

Instantly share code, notes, and snippets.

@jivinivan
Created February 2, 2014 20:51
Show Gist options
  • Select an option

  • Save jivinivan/8774741 to your computer and use it in GitHub Desktop.

Select an option

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