sass @for循环中 变量与变量的运算会被忽视?

发布于 2022-09-04 12:04:49 字数 1087 浏览 11 评论 0

$section-height:120px;
@for $num from 1 through 10{

.section-#{$num}{
    height: #{$num}*$section-height;
}

}

结果是
.section-1 {
height: 1*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-2 {
height: 2*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-3 {
height: 3*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-4 {
height: 4*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-5 {
height: 5*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-6 {
height: 6*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-7 {
height: 7*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-8 {
height: 8*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-9 {
height: 9*120px; }

/ line 42, ../sass/Zigzag-layout.scss /
.section-10 {
height: 10*120px; }

运算符*被忽略了?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

谁人与我共长歌 2022-09-11 12:04:49

.section-#{$num}{

height: $num * $section-height;

}

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