scss compiler
supported:
Variables
Nesting
Operators
@mixin zebra() { @for $i from 1 through 7 { color: white; @if ($i % 2 == 1) { .stripe-#{$i} { background-color: black; color: white; } } } } div { @include zebra(); text-align: center; }
compile