JSFiddle - React, Tailwind, and code Playground

by Dineshkani

HTML

<div><span>I am first child to div</span>
    <span>I am second child to div</span>
    <span>I am third child to div</span>
    <span>I am last child to div</span>
</div>

CSS

span:last-child{
    font-size: 30px;
}