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)
You need to do this
li:nth-child(n+5) { background-color:blue; }
Example: http://jsfiddle.net/jasongennaro/2p4e9/1/
Use :nth-child(n+5) (CSS indexes start at 1).