JSFiddle - React, Tailwind, and code Playground

HTML

<table id="table_even" style="width: 100%">
        <tr>
            <td>##</td>
            <td>##</td>
        </tr>
        <tr>
            <td>##</td>
            <td>##</td>
        </tr>
        <tr>
            <td>##</td>
            <td>##</td>
        </tr>
    </table>

CSS

#table_even tr:hover { background-color:#fffbae!important; }

    #table_even tr:nth-child(odd) td { background-color:#fbfbfb }
    #table_even tr:nth-child(even) td { background-color:#e8ecee }