JSFiddle - React, Tailwind, and code Playground

HTML

<div class="items">
    <article class="today">
        this is today
    </article>
    <article class="today">
        this is today
    </article>
    <article class="today">
        this is today
    </article>
</div>

CSS

article {
    background: cyan;
}

.today:last-child { 
    background: black;
    color: white;
}