JSFiddle - React, Tailwind, and code Playground
by Reigel Gallarde
HTML
<table width="100%" cellspacing="0">
<tr>
<td>first name</td>
<td>last name</td>
</tr>
<tr>
<td>Kip</td>
<td>Hughes</td>
</tr>
<tr>
<td>Reigel</td>
<td>Gallarde</td>
</tr>
</table>
<br/>
<table class="t" width="100%" cellspacing="0">
<tr>
<td>first name</td>
<td>last name</td>
</tr>
<tr>
<td>Kip</td>
<td>Hughes</td>
</tr>
<tr>
<td>Reigel</td>
<td>Gallarde</td>
</tr>
</table>
CSS
.t tr:first-child {
display: none;
}
.t td {
float: left;
clear: both;
}