JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tbody>
<tr>
<td>
foo
<td class=highlight>
bar
<td>
baz
</table>
CSS
table {
width:100%;
}
tr:hover td.highlight {
background:papayawhip;
}