JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>some data</td>
<td>some data</td>
</tr>
</table>
CSS
body{
background:red;
}
table{
table-layout:fixed;
border-collapse:separate;
border-spacing:0 30px;
}
td{
padding:15px 6px;
background:#fff;
}