Using the :nth-child pseudo class, what would be the most efficient way to style every third item in a list, no matter how many items are present, starting with item 2? code example
Example 1: nth of type for every 4th after the 1st
:nth-of-type(4n+1)
Example 2: select first 5 child css
li:nth-child(-n+5) {
color: green;
}