I have divs in a horizontal row, all in the same class, like this:
1 2 3 4 5 6 7 8 9 10
What I want is to apply css to every other odd row, so 1,5,9, etc.
I've tried
.myClass:nth-child(n+4) and
.myClass:nth-child(odd),.myClass:nth-child(odd){
but can't figure it out :(