标签: css sass
此代码出于某种原因破坏了我的SASS流程。
@for $i from 1 through 100 { .t-#{$i} { top: #{$i}%; } }
答案 0 :(得分:3)
您可以更改为此:
@for $i from 1 through 100 { .t-#{$i} { top: 1% * $i } }
来自SASS docs:
这里是example
答案 1 :(得分:0)
您也可以这样写
@for $i from 1 through 100 { .t-#{$i} { top: #{$i + '%'}; } }