JSFiddle - React, Tailwind, and code Playground
HTML
<table id = "myTable">
<col style="text-align:center" />
<col style="background-color: yellow;" />
<col style="background-color: blue;" />
<thead>
<tr>
<th>
Name
</th>
<th>
Address
</th>
<th>
Age
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
Lijo
</td>
<td>
India
</td>
<td>
27
</td>
</tr>
</tbody>
</table>