我在水平行中有 div,都在同一个类中,如下所示:
1 2 3 4 5 6 7 8 9 10
我想要的是将 css 应用于所有其他奇数列,例如 1、5、9 等。
我试过了
.myClass:nth-child(n+4) and
.myClass:nth-child(odd),.myClass:nth-child(odd){
但无法弄清楚:(
我在水平行中有 div,都在同一个类中,如下所示:
1 2 3 4 5 6 7 8 9 10
我想要的是将 css 应用于所有其他奇数列,例如 1、5、9 等。
我试过了
.myClass:nth-child(n+4) and
.myClass:nth-child(odd),.myClass:nth-child(odd){
但无法弄清楚:(
:nth-child(4n)
给我们 0、4、8 等。
既然你想要1、5、9,你应该试试:nth-child(4n + 1)
您想要做的是将 css 应用到每四行,所以您想要这样做:
.myClass:nth-child(4n+1)