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>
</ul>

CSS

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

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