CSS List Styling

3d Animation

CSS styling for lists and bullets

Setting alternate styling for list items. Eg. having different backgrounds on items in a list.


li { background: red; }
li:nth-child(odd) { background: blue; }