JSFiddle - React, Tailwind, and code Playground
HTML
Non-fixed table:
<table><tr>
<td style="width: 75%;"></td>
<td style="width: 75px;"></td>
</tr></table>
Fixed table:
<table style="table-layout: fixed"><tr>
<td style="width: 75%;"></td>
<td style="width: 75px;"></td>
</tr></table>
CSS
table { width: 130px; height: 100px; border-spacing: 10px; }
table { background: cyan; }
td { background: blue; }