nth-child
値をSASS変数として使用する方法はありますか?
使用例:
div:nth-child(n) {
content: '#{$n}'
}
div:nth-child(n) {
background: rgb(#{$n}, #{$n}, #{$n});
}
正確にそれを行う方法はないと思います。ただし、@for
既知の要素数をループするディレクティブ:
$elements: 15;
@for $i from 0 to $elements {
div:nth-child(#{$i + 1}) {
background: rgb($i, $i, $i);
}
}
次のようなミックスインを使用できます。
@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