伪类使用
2022-10-17 本文已影响0人
LemonTree7
//非第一个元素
&:not(:first-child){
css样式代码;
}
nth-child(2n-1) //奇数行
nth-child(odd) //奇数行
nth-child(2n) //偶数行
nth-child(even) //偶数行
//非第一个元素
&:not(:first-child){
css样式代码;
}
nth-child(2n-1) //奇数行
nth-child(odd) //奇数行
nth-child(2n) //偶数行
nth-child(even) //偶数行