I have a list, and each item is linked, is there a way I can alternate the background colors for each item?
L
How about some lovely CSS3?
li { background: green; } li:nth-child(odd) { background: red; }