web-dev-qa-db-fra.com

Utiliser la nième valeur enfant comme variable SASS

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});
}
31
zessx

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);
  }
}
57
myajouri

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

6
Jens Cocquyt