JSFiddle - React, Tailwind, and code Playground

by sc0rp10

HTML

<table class="days">
                <tr>
                    <td class="days__day">
                        <div class="days__day__wrapper">
                            <span class="days__day__text">21, Пн</span>
                        </div>
                    </td>
                    <td class="days__day">
                        <div class="days__day__wrapper">
                            <span class="days__day__text">21, Пн</span>
                        </div>
                    </td>
                    <td class="days__day">
                        <div class="days__day__wrapper">
                            <span class="days__day__text">21, Пн</span>
                        </div>
                    </td>
                </tr>
            </table>

CSS

.days__day:first-child {
    background-color:#ebacca !important;
}
.days__day:last-child .days__day__wrapper {
    background-color:red !important;
}