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;
}