Skip to content

Instantly share code, notes, and snippets.

@LucaRosaldi
Created October 23, 2012 12:39
Show Gist options
  • Save LucaRosaldi/3938528 to your computer and use it in GitHub Desktop.
Save LucaRosaldi/3938528 to your computer and use it in GitHub Desktop.
SASS: mixin vendorize()
@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