Last active
August 29, 2015 14:01
-
-
Save feifanzhou/ea7f35a2899646c686c4 to your computer and use it in GitHub Desktop.
Vendor prefix SASS mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin vendor-prefix($name, $argument) { | |
#{$name}: #{ $argument }; | |
-webkit-#{$name}: #{ $argument }; | |
-ms-#{$name}: #{ $argument }; | |
-moz-#{$name}: #{ $argument }; | |
-o-#{$name}: #{ $argument }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example usage: