Existe-t-il un moyen d'utiliser le nth-child
valeur comme variable SASS?
Exemples d'utilisation:
div:nth-child(n) {
content: '#{$n}'
}
div:nth-child(n) {
background: rgb(#{$n}, #{$n}, #{$n});
}
Je ne pense pas qu'il existe un moyen de faire exactement cela. Mais vous pouvez utiliser @for
directive pour parcourir un nombre connu d'éléments:
$elements: 15;
@for $i from 0 to $elements {
div:nth-child(#{$i + 1}) {
background: rgb($i, $i, $i);
}
}
Vous pouvez utiliser un mixin comme celui-ci:
@mixin child($n) {
&:nth-child(#{$n}){
background-color:rgb($n,$n,$n);
}
}
div{
@include child(2);
}
Le css compilé ressemble à:
div:nth-child(2) {
background-color: #020202;
}
Voir un exemple ici