I have divs in a horizontal line, all in one class, for example:
1 2 3 4 5 6 7 8 9 10
I want to use css for every other odd line, so 1,5,9, etc.
I tried
.myClass:nth-child(n+4) and .myClass:nth-child(odd),.myClass:nth-child(odd){
but can not understand: (
source share