JSFiddle - React, Tailwind, and code Playground

HTML

<table>
    <tr>
        <td>First1</td><td>Hello</td>
    </tr>
</table>

CSS

table {
    width: 100%;
}


table tr:first-child:hover {
    background-color: yellow;
}