JSFiddle - React, Tailwind, and code Playground

by Kaleb Hornsby

HTML

<table>
<tbody>
<tr>
    <td>
        foo
    <td class=highlight>
        bar
    <td>
        baz
</table>

CSS

table {
    width:100%;
}
tr:hover td.highlight {
    background:papayawhip;
}