JSFiddle - React, Tailwind, and code Playground

HTML

<table>
  <tbody>
    <tr>
      <td></td>
      <td><span></span></td>
    </tr>
  </tbody>
</table>

CSS

table {
  background-color: gray;
  height: 200px;
  margin-left: 3em;
  padding: 1.5em;
  width: 500px;
}
tr {
  position: relative;
}
td:first-child {
  background-color: red;
}
td:nth-child(2) {
  background-color: yellow;
}
span {
  background-color: blue;
  left: 0;
  padding: 1em;
  position: absolute;
}