是否有类似“+=”之类的内容?在SASS?

发布于 2024-10-19 05:18:18 字数 186 浏览 0 评论 0原文

是否可以通过递增或递减的方式重新定义 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏花。依旧 2024-10-26 05:18:18

不确定 += 是否有效,但您可以使用基变量,然后在另一个类中添加它。

$baseFontSize: 10px

h1
  font-size: $baseFontSize


.border 
  font-size: $baseFontSize + 10px

Not sure if the += works, but you could use a base variable and then add on to it in another class.

$baseFontSize: 10px

h1
  font-size: $baseFontSize


.border 
  font-size: $baseFontSize + 10px
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文