Add Class to Every Other Item in List
PermalinkHow do I make it so that a class is added to every other item (all even numbers)?

<ol> <li>Item 1</li> <li class="fluffynuggins">Item 2</li> <li>Item 3</li> <li class="fluffynuggins">Item 4</li> <li>Item 5</li> ... </ol>
I did this:
ol li:nth-of-type(2n) { styles... }
That works just fine as it applies the styles to all even-numbered items.