JSFiddle - React, Tailwind, and code Playground

by Afzaal Ahmad Zeeshan

HTML

<ul>
    <li>First</li>
    <li>Second</li>
    <li>Third</li>
    <li>Fourth</li>
</ul>

CSS

ul li {
    color: #000;
    padding: 10px;
    border: 1px solid #000;
    width: 200px;
    display: inline;
}

ul {
    list-style: none;
}

ul li:first-child {
    background-color: purple;
}

ul li:nth-child(2) {
    background-color: red;
}

ul li:last-child {
    background-color: pink;
}