本文介绍了CSS甚至奇怪为类中的每个其他奇数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个水平行的div,都在同一个类,如下:

I have divs in a horizontal row, all in the same class, like this:

1 2 3 4 5 6 7 8 9 10

1 2 3 4 5 6 7 8 9 10

我想要的是对每隔一行奇数行应用css,所以
1,5,9等。

What I want is to apply css to every other odd row, so1,5,9, etc.

我试过了

.myClass:nth-child(n+4) and
.myClass:nth-child(odd),.myClass:nth-child(odd){

out:(

推荐答案

:nth-​​child(4n) 0,4,8等。

因为你想要1,5,9,你应该尝试

Since you want 1, 5, 9, you should try :nth-child(4n + 1)

这篇关于CSS甚至奇怪为类中的每个其他奇数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 03:14