Skip to content

Instantly share code, notes, and snippets.

@liamr
Created May 20, 2013 10:02
Show Gist options
  • Save liamr/5611391 to your computer and use it in GitHub Desktop.
Save liamr/5611391 to your computer and use it in GitHub Desktop.
Nice little vendor prefix mixin for scss
@mixin vendor($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