JSFiddle - React, Tailwind, and code Playground

by FiNGAHOLiC

HTML

<div class="home">
    <p>zero</p>
    <p class="red">first</p>
    <p class="red">second</p>
    <p class="red">third</p>
    <p class="red">fourth</p>
</div>

CSS

.red:nth-of-type(1){
    border:5px solid red;
}