[Solved] CSS style of Unordered list
So I don’t really understand what your problem is or if I relly provide the right answer but I have this: Example ul { padding: 0px; font-size: 1px; } ul:nth-child(odd) li{ background: black; color: blue; } ul:nth-child(odd) li:hover{ background: white; } ul:nth-child(odd) li:nth-child(3n){ font-weight: bold; color: white; background: #999; } ul:nth-child(odd) li:hover:nth-child(3n){ background: darkblue; } … Read more