thoughtbot / bourbon

A Lightweight Sass Tool Set
https://www.bourbon.io/
MIT License
9.09k stars 878 forks source link

CSS3 calc() mixin with prefix #317

Closed mp3wizard closed 10 years ago

mp3wizard commented 10 years ago

MIXIN: @mixin calc($property, $expression) {

{$property}: -moz-calc(#{$expression});

{$property}: -webkit-calc(#{$expression});

{$property}: calc(#{$expression});

}

USAGE: article { border: 1px solid red; @include calc( width, '100% - 2px') }

Ref. https://coderwall.com/p/qac-og & http://caniuse.com/calc

plapier commented 10 years ago

This mixin already exists in bourbon-3.2.0-beta