I have a list item where I\'d like the 4th item and onwards to have a different background-color.
background-color
I\'ve tried the following:
li:nth-child(4)
Use :nth-child(n+5) (CSS indexes start at 1).
li:nth-child(n+5) { background-color:blue; }