Created
November 24, 2012 19:23
-
-
Save zastrow/4141089 to your computer and use it in GitHub Desktop.
SASS mixing for standard vendor prefixes
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 prefix ($prop, $val...){ | |
-webkit-#{$prop}:#{$val}; | |
-moz-#{$prop}:#{$val}; | |
#{$prop}:#{$val}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment