I attempted to utilize CSS to target a group of divs in pairs of 2 with an interval of 2.
For example:
I have AA AA AA AA AA AA but I need to apply different styles to every 2 elements (where A and B represent DIVs):
AA BB AA BB AA BB
I have tried the following code snippet without success:
&:nth-child(3n+3)
Can anyone provide guidance on how to achieve this?