我需要这样在我的SCSS代码中定义宽度:
#example {
width: $currentWidth + 349 !important;
}
凡$currentWidth
由循环定义。
但是,Sass总是最终将两个数字连接起来,而不是进行算术运算。
我也尝试过:
width: #{$currentWidth + 349}px !important;
这仍然导致串联。
我想知道我在做什么错?我知道这是非常基础的,但是我似乎也找不到关于Sass如何处理算术的好信息
我需要这样在我的SCSS代码中定义宽度:
#example {
width: $currentWidth + 349 !important;
}
凡$currentWidth
由循环定义。
但是,Sass总是最终将两个数字连接起来,而不是进行算术运算。
我也尝试过:
width: #{$currentWidth + 349}px !important;
这仍然导致串联。
我想知道我在做什么错?我知道这是非常基础的,但是我似乎也找不到关于Sass如何处理算术的好信息