使用nth-child值作为SASS变量

时间:2013-11-21 11:57:26

标签: css sass css-selectors

有没有办法将nth-child值用作SASS变量?

使用示例:

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

2 个答案:

答案 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