Last active
December 14, 2015 14:18
-
-
Save zumwalt/5099333 to your computer and use it in GitHub Desktop.
Calc mixin for Sass
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 calc($property, $expression) { | |
#{$property}: -moz-calc(#{$expression}); | |
#{$property}: -o-calc(#{$expression}); | |
#{$property}: -webkit-calc(#{$expression}); | |
#{$property}: calc(#{$expression}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
.test {
@include calc(width, "25% - 1em");
}