Hello, I want to get the following result with css:
I know that with :nth-child: odd
and :nth-child: even
select odd and even, but the way I want it would look something like this:
No, yes, yes, no, no, yes, yes ...
Practically taking the first one, then I would skip the elements by 2 by 2, how do I get with nth-child
?
Note: The image is only to illustrate the selection sequence.