JSFiddle - React, Tailwind, and code Playground

by mukkaram waheed

HTML

<div class="section">
  
    <div>
        paragraph
    </div>
    <div>
        paragraph
    </div>
    <div>
        paragraph
    </div>
</div>
<div class="section">
    <div>
        paragraph
    </div>
    <div>
        paragraph
    </div>
    <div>
        paragraph
    </div>
</div>

CSS

div.section
{
    border: 1px solid black;
}
div.section div:nth-of-type(1)
{
    color: Green;
}

div.section div:nth-of-type(even)
{
    color: Green;
}