web-dev-qa-db-ja.com

n番目の子の値をSASS変数として使用する

nth-child値をSASS変数として使用する方法はありますか?

使用例:

div:nth-child(n) {
    content: '#{$n}'
}
div:nth-child(n) {
    background: rgb(#{$n}, #{$n}, #{$n});
}
31
zessx

正確にそれを行う方法はないと思います。ただし、@for既知の要素数をループするディレクティブ:

$elements: 15;
@for $i from 0 to $elements {
  div:nth-child(#{$i + 1}) {
     background: rgb($i, $i, $i);
  }
}
57
myajouri

次のようなミックスインを使用できます。

 @mixin child($n) {
     &:nth-child(#{$n}){
           background-color:rgb($n,$n,$n);
     }
 }

 div{
     @include child(2);
    }

コンパイルされたcssは次のようになります。

div:nth-child(2) {
   background-color: #020202;
}

例を参照してください here

6
Jens Cocquyt