I have very simple list\[code\]<ul> <li>Test</li> <li>Test1</li> <li>Test2</li> <li>Test3</li> <li>Test4</li> <li>Test5</li> <li>Test6</li> <li>Test7</li></ul>\[/code\]Which I'm trying to turn all red except for the 5/6 list item.I have tried: \[code\]ul li:nth-child(-n + 4):nth-child(-n + 7)\[/code\] And: \[code\]ul li:nth-child(-n + 4):nth-last-child(-n + 2)\[/code\] with no luckjsfiddleCan this be done using pseudo-selectors and in only one selector?