JSFiddle - React, Tailwind, and code Playground

by der_robert

HTML

<ul>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
    <li>ho</li>
</ul>

CSS

ul{
    width: 500px;
    background-color: #ccc;
}

li {
    color: blue;
    width: 400px;
}
li:nth-child(odd) {
    background-color: green;
}
li:nth-child(even) {
    background-color: red;
    margin-left: 100px;
}