Skip to content

Home

Zebra striped list

Creates a striped list with alternating background colors.

💡 Tip

You can use it to apply different styles to other HTML elements like <div>, <tr>, <p>, <ol>, etc.

<ul>
  <li>Item 01</li>
  <li>Item 02</li>
  <li>Item 03</li>
  <li>Item 04</li>
  <li>Item 05</li>
</ul>
li:nth-child(odd) {
  background-color: #999;
}

More like this

Start typing a keyphrase to see matching snippets.