是否可以通过递增或递减重新定义SASS中的数字属性?考虑这样的事情:
h1 {
font-size: 10px;
}
h1.important {
font-size: += 10px;
}
我知道我可以通过定义变量来解决这个问题.没有可能吗?
最佳答案
不确定=是否有效,但您可以使用基本变量然后在另一个类中添加它.
原文链接:https://www.f2er.com/css/427052.html$baseFontSize: 10px
h1
font-size: $baseFontSize
.border
font-size: $baseFontSize + 10px