JSFiddle - React, Tailwind, and code Playground
by himel023
HTML
<p>Simple table with header</p>
<table>
<colgroup>
<col >
<col >
<col >
</colgroup>
<tr>
<th>First name</th>
<th>Last name</th>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
<tr>
<td>Jane</td>
<td>Doe</td>
</tr>
</table>
CSS
table, td{
border: 1 px solid grey;
border-collapse: collapse;
}