JSFiddle - React, Tailwind, and code Playground

by ShoreMiles

HTML

<table>
    <tr>
        <th>Col 1</th>
        <th>Col 2</th>
        <th>Col 3</th>
        <th>Col 4</th>
    </tr>
        <tr>
        <td>Col 1</td>
        <td>Col 2</td>
        <td>Col 3</td>
        <td>Col 4</td>
    </tr>
</table>

CSS

table th:hover{
    background: #f00;
}

table tr:hover{
    background: #00f;
}