次の SCSS スニペットは、使用後に適切な CSS を生成しますcompass compile
。しかし、CSS を使用すると、定義-output_style compressed
が欠落しています。等が発生するが黄色が欠落している。.box-yellow
.box-red
$colors: red #f00, yellow #ff0, green #0f0, blue #00f;
@each $entry in $colors {
$name: nth($entry, 1);
$color: nth($entry, 2);
.box-#{$name} > header {
background: $color;
}
}
これはバグでしょうか、それともここで何か不足していますか?