JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>Name</td>
<td><input type="text" name="name"></td>
</tr>
</table>
CSS
tr:focus-within {
background:yellow;
}
<table>
<tr>
<td>Name</td>
<td><input type="text" name="name"></td>
</tr>
</table>
tr:focus-within {
background:yellow;
}