css – Sass是连接而不是添加?

前端之家收集整理的这篇文章主要介绍了css – Sass是连接而不是添加?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Math with interpolated variables?1
我需要在我的SCSS代码中定义一个宽度:
#example {
  width: $currentWidth + 349 !important;
}

其中$currentWidth由循环定义.

然而,Sass总是最终连接两个数字,而不是进行算术.

我也试过:

width:#{$currentWidth 349} px!important;

这仍然导致连接.

我想知道我在做错什么?我知道这是非常基本的,但是我似乎还没有找到关于Sass如何处理算术的好信息

解决方法

假设$currentWidth是一个整数.

上海社会科学院:

$currentWidth: 30;

#example {
  width: unquote( ($currentWidth + 349) + 'px ' + !important );
}

CSS输出

#example {
  width: 379px !important;
}

你可以在这里测试:

http://sass-lang.com/try.html

原文链接:https://www.f2er.com/css/217107.html

猜你在找的CSS相关文章