Skip to content

Instantly share code, notes, and snippets.

@bloqhead
Created September 30, 2013 21:30
Show Gist options
  • Save bloqhead/6770577 to your computer and use it in GitHub Desktop.
Save bloqhead/6770577 to your computer and use it in GitHub Desktop.
CSS3 calc Sass mixin. Source: https://coderwall.com/p/qac-og
@mixin calc($property, $expression) {
#{$property}: -moz-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