I know that nth-child is for every nth element, but maybe it\'s possible to ignore the first 3 elements, stylize the other 3 and repeat for a huge list. I tried to write that ev
http://jsfiddle.net/bhlaird/7c3aw/ If you want your pattern to repeat every 6 elements (3 on, 3 off) use 6n.
div:nth-child(6n+4), div:nth-child(6n+5), div:nth-child(6n+6) { background-color:#0066cc; }