Say I have the following structure for a list:
<ul>
<li></li><li></li>
<li></li><li></li>
</ul>
and each <li> is 50% width so I want every two to have the same background colour like this:
<ul>
<li style="background:#CCC;"></li><li style="background:#CCC;"></li>
<li style="background:#DDD;"></li><li style="background:#DDD;"></li>
<li style="background:#CCC;"></li><li style="background:#CCC;"></li>
<li style="background:#DDD;"></li><li style="background:#DDD;"></li>
</ul>
Can I do this using the 'nth-child()' CSS selector so as to minimise code?