Skip to content

Instantly share code, notes, and snippets.

@jonbellah
Created June 30, 2013 18:04
Show Gist options
  • Save jonbellah/5896196 to your computer and use it in GitHub Desktop.
Save jonbellah/5896196 to your computer and use it in GitHub Desktop.
Vendor Prefixes
@mixin prefix($name, $value) {
-webkit-#{$name}: $value;
-moz-#{$name}: $value;
-ms-#{$name}: $value;
-o-#{$name}: $value;
#{$name}: $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment