JSFiddle - React, Tailwind, and code Playground

HTML

<div>
  test1
</div>
<table>
  <tr><td>test2</td></tr>
</table>

CSS

div {
  float: left;
  width: 20px;
  background-color: orange;
}

table {
  float: left;
  width: 10px;
  //border-spacing: 0;
}

table td {
  background-color: gray;
}