你需要使用一个placeholder
,这个Sass
:
$siteWidth: 80em;
$columnCount: 8;
$columnWidth: $siteWidth / $columnCount;
%col {
height: 10px;
}
.col1 {
@extend %col;
}
@for $i from 1 through $columnCount {
.col#{$i} {
@extend %col;
}
}
@for $i from 1 through $columnCount {
.col#{$i} {
width: $columnWidth * $i;
}
}
将生成这个CSS
:
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8 {
height: 10px; }
.col1 {
width: 10em; }
.col2 {
width: 20em; }
.col3 {
width: 30em; }
.col4 {
width: 40em; }
.col5 {
width: 50em; }
.col6 {
width: 60em; }
.col7 {
width: 70em; }
.col8 {
width: 80em; }
现在,您可能不想设置该height
属性,但您明白了。