Created
February 9, 2016 21:34
-
-
Save keblodev/d6ff1a6d8590e2c57886 to your computer and use it in GitHub Desktop.
sass autoprefixer method
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
| /// autoprefixer method | |
| /// --- | |
| /// @access public | |
| /// --- | |
| /// @param {string|rulename} $ruleName - rule name | |
| /// --- | |
| /// @param {string|rule} $ruleValue - rule value | |
| @mixin autoprefixer($ruleName, $ruleValue) { | |
| -ms-#{$ruleName}: $ruleValue; | |
| -moz-#{$ruleName}: $ruleValue; | |
| -webkit-#{$ruleName}: $ruleValue; | |
| #{$ruleName}: $ruleValue; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment