JSFiddle - React, Tailwind, and code Playground

by David Hughes

HTML

<table>
  <tr>
    <td>A TD</td>
  </tr>
  <tr>
    <td>2nd TD</td>
  </tr>
</table>

CSS

table {
  border: 1px solid #000;
  width: 250px;
}

td {
  background: red;
}