JSFiddle - React, Tailwind, and code Playground

by eirc

HTML

<div>
    <p>green background with :first-child</p>
    <p>red background with :nth-child(2)</p>
    <p>blue background with :last-child</p>
</div>

CSS

div p:first-child {
    background-color: green;
}

div p:nth-child(2) {
    background-color: red;
}

div p:last-child {
    background-color: blue;
}