Skip to content

Instantly share code, notes, and snippets.

@orodio
Created August 13, 2013 03:53
Show Gist options
  • Save orodio/6217759 to your computer and use it in GitHub Desktop.
Save orodio/6217759 to your computer and use it in GitHub Desktop.
A little more flexible Vendor prefix mixin for sass. Most of the time you don't need all the prefixes
=vendor($property, $value, $prefixes: webkit moz ms o)
@each $prefix in $prefixes
-#{$prefix}-#{$property}: unquote($value)
#{$property}: unquote($value)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment