在字符串和数学中使用变量解释

时间:2014-11-16 19:47:38

标签: sass

这是我的笔:codepen.io/JFrankParnell/pen/bNGQrQ 我尝试使用变量,只有

 #{$containwidth}px;

正在运作。使用#{$containwidth}%;尝试使用百分比或数学将导致编译错误或无法正常工作。

我已经给出了#control样式来显示我对每个测试scss的预期。

1 个答案:

答案 0 :(得分:0)

你可以使用百分比。

width: percentage($othervar / $containwidth);

满笔: http://codepen.io/bravocado/pen/XJWyYK

这是doc: http://sass-lang.com/documentation/Sass/Script/Functions.html#percentage-instance_method

希望它有所帮助。 :)