我的SASS循环使用插值法和百分比法中断

时间:2019-09-25 09:35:30

标签: css sass

此代码出于某种原因破坏了我的SASS流程。

@for $i from 1 through 100 {
  .t-#{$i} {
    top: #{$i}%;
  }
} 

2 个答案:

答案 0 :(得分:3)

您可以更改为此:

@for $i from 1 through 100 {
  .t-#{$i} {
    top: 1% * $i
  }
}

来自SASS docs

SASS

这里是example

答案 1 :(得分:0)

您也可以这样写

@for $i from 1 through 100 {
  .t-#{$i} {
    top: #{$i + '%'};
  }
}