JSFiddle - React, Tailwind, and code Playground

by brigand

HTML

<table>
  <tbody>
    <tr>
      <td><input type="text"></td>
    </tr>

  </tbody>
</table>

CSS

* {
  box-sizing: border-box;
}

td {
  box-shadow: 0 0 0 1px hotpink;
}

input {
  padding: 1em;
  border-color: limegreen;
  width: 100%;
}