JSFiddle - React, Tailwind, and code Playground

by Carlos González

HTML

<div>
  test
</div>
<table>
  <tr><td>test</td></tr>
</table>

CSS

div {
  float: left;
  width: 18%;
  background-color: orange;
}

table {
  float: left;
  width: 82%;
  border-spacing: 0;
}

table td {
  background-color: gray;
}