Ce code SCSS
@for $i from 1 through 2 {
.style-#{$i} {
position: relative;
}
}
génère une telle sortie CSS :
.style-1 {
position: relative;
}
.style-2 {
position: relative;
}
Et je veux qu'il en soit ainsi :
.style-1, .style-2 {
position: relative;
}
Comment s'y prendre utiliser un cycle en SCSS ?