标签:除了 IV pre 遍历 height csharp index dex child
$list-bg:red,orange,blue,skyblue;
ul{
    >li{
      height: 30px;
      @each $c in $list-bg{
             $i:index($list-bg,$c);
             &:nth-child(#{$i+1}){//+1是除了第一个以外的li 
                background: nth($list-bg,$i);
             }
        }
    }
}
标签:除了 IV pre 遍历 height csharp index dex child
原文地址:https://www.cnblogs.com/MainActivity/p/9237982.html