JSFiddle - React, Tailwind, and code Playground
by Dzhav
HTML
<table>
<tr>
<td class="one">One</td>
<td>Two</td>
<td>Three</td>
</tr>
</table>
CSS
table {
display: block;
border: none;
width: 600px;
background: #f00;
}
tr {
display: block;
width: 600px;
}
td {
display: block !important;
border: #fc0 solid 1px;
}
.one {
float: left;
margin: 5px;
width: 30px;
}