小编典典

我可以使用变量作为选择器吗?

css

我有这个变量:

$gutter: 10;

我想在像SCSS这样的选择器中使用它:

.grid+$gutter {
    background: red;
}

因此输出变为CSS:

.grid10 {
    background: red;
}

但这是行不通的。可能吗?


阅读 356

收藏
2020-05-16

共1个答案

小编典典

$gutter: 10;

.grid#{$gutter} {
    background: red;
}

如果在字符串中使用,例如在URL中使用:

background: url('/ui/all/fonts/#{$filename}.woff')
2020-05-16