JSFiddle - React, Tailwind, and code Playground

by WoJWoJ

HTML

<div class=tight>
<table>
<tr>
  <td>hello</td><td>world</td>
</tr>
</table>
</div>

<div class=wide>
<table>
<tr>
  <td>bonjour</td><td>tout le monde</td>
</tr>
</table>
</div>

CSS

td {
  background: green;
  color: white;
  padding: 10px;
}