JSFiddle - React, Tailwind, and code Playground
HTML
<div>
test
</div>
<table>
<tr><td>test</td></tr>
</table>
CSS
div {
float: left;
width: 18%;
background-color: orange;
}
table {
float: right;
width: 82%;
border-spacing: 0;
}
table td {
background-color: gray;
}