输出计算?

时间:2018-05-02 13:20:58

标签: sass

如何将计算结果输出到内容?

例如:

my_script

以上只输出计算@for $i from 1 through 8 { .list-el { $test: calc($i * 10); &:before { content: '#{$test}'; } } } 而不是结果。我希望看到一个列表:calc($i * 10)

1 个答案:

答案 0 :(得分:1)

只需删除'calc()'。

@for $i from 1 through 8 {
    .list-el {
        $test: $i * 10;

        &:before {
            content: '#{$test}';
        }
    }
}