伪类使用

//非第一个元素
&:not(:first-child){
css样式代码;
}
nth-child(2n-1) //奇数行
nth-child(odd) //奇数行
nth-child(2n) //偶数行
nth-child(even) //偶数行

你可能感兴趣的:(伪类使用)