如何在 Sass (scss) 中以逗号分隔类而不在编译代码中重复 CSS 本身?
我有:
@for $i from 1 through ($maxcolumns){
.col#{$i}{
//code for all columns
}
}
这会产生
.col1{
//code
}
.col2{
//code
}
但是我更喜欢
.col1, .col2, ...{
//code
}
谢谢!
如何在 Sass (scss) 中以逗号分隔类而不在编译代码中重复 CSS 本身?
我有:
@for $i from 1 through ($maxcolumns){
.col#{$i}{
//code for all columns
}
}
这会产生
.col1{
//code
}
.col2{
//code
}
但是我更喜欢
.col1, .col2, ...{
//code
}
谢谢!