@for
@for
规则,写作 @for <variable> from <expression> to <expression> { ... }
或 @for <variable> from <expression> through <expression> { ... }
,从一个数字(第一个 表达 的结果)到另一个数字(第二个 表达 的结果)进行向上或向下计数,并评估中间每个数字的块。沿途的每个数字都分配给给定的变量名称。如果使用 to
,则排除最终数字;如果使用 through
,则将其包括在内。
Playground
SCSS Syntax
$base-color: #036;
@for $i from 1 through 3 {
ul:nth-child(3n + #{$i}) {
background-color: lighten($base-color, $i * 5%);
}
}
Playground
Sass Syntax
$base-color: #036
@for $i from 1 through 3
ul:nth-child(3n + #{$i})
background-color: lighten($base-color, $i * 5%)
CSS Output
ul:nth-child(3n+1) {
background-color: rgb(0, 63.75, 127.5);
}
ul:nth-child(3n+2) {
background-color: rgb(0, 76.5, 153);
}
ul:nth-child(3n+3) {
background-color: rgb(0, 89.25, 178.5);
}