Skip to content

Instantly share code, notes, and snippets.

@zumwalt
Last active December 14, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zumwalt/5099333 to your computer and use it in GitHub Desktop.
Save zumwalt/5099333 to your computer and use it in GitHub Desktop.
Calc mixin for Sass
@mixin calc($property, $expression) {
#{$property}: -moz-calc(#{$expression});
#{$property}: -o-calc(#{$expression});
#{$property}: -webkit-calc(#{$expression});
#{$property}: calc(#{$expression});
}
@zumwalt
Copy link
Author

zumwalt commented Jul 18, 2013

.test {
@include calc(width, "25% - 1em");
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment