JSFiddle - React, Tailwind, and code Playground

by Joseph Tate

HTML

<table>
  <tr>
    <td>stuff</td>
    <td>more stuff</td>
  </tr>
</table>

SCSS

table {
    table-layout:fixed;
    width:100%;
    border: 1px solid tomato;
    border-collapse: collapse;
    th, td {
      width: 100px;
    }
}