有没有办法将nth-child
值用作SASS变量?
使用示例:
div:nth-child(n) {
content: '#{$n}'
}
div:nth-child(n) {
background: rgb(#{$n}, #{$n}, #{$n});
}
答案 0 :(得分:54)
我认为没有办法做到这一点。但是您可以使用@for
指令循环遍历已知数量的元素:
$elements: 15;
@for $i from 0 to $elements {
div:nth-child(#{$i + 1}) {
background: rgb($i, $i, $i);
}
}
答案 1 :(得分:6)
你可以使用这样的mixin:
@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