JSFiddle - React, Tailwind, and code Playground

by jonathanmh

HTML

<table>
    <tr>
        <td>1</td>
        <td>2</td>
    </tr>
</table>

CSS

tr td:nth-child(odd) {
    background: magenta;
}