是否有类似“+=”之类的内容?在SASS?
是否可以通过递增或递减的方式重新定义 SASS 中的数值属性?考虑这样的事情:
h1 {
font-size: 10px;
}
h1.important {
font-size: += 10px;
}
我知道我可以通过定义一个变量来解决这个问题。没有的话可以做到这一点吗?
Is it possible to redefine a numerical attribute in SASS by increment or decrement? Consider something like this:
h1 {
font-size: 10px;
}
h1.important {
font-size: += 10px;
}
I know that I can work around that by defining a variable. Is it possible to do this without?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定
+=
是否有效,但您可以使用基变量,然后在另一个类中添加它。Not sure if the
+=
works, but you could use a base variable and then add on to it in another class.