JSFiddle - React, Tailwind, and code Playground
by speaktorob
HTML
<div class="wrapper">
<table>
<tr>
<th>Name</th>
<th>Age</th>
<th>Profession</th>
</tr>
<tr>
<td>Mario</td>
<td>28</td>
<td>Plumber/Hero</td>
</tr>
<tr>
<td>Sonic</td>
<td>20</td>
<td>Hedgehog</td>
</tr>
<tr>
<td>Leisure suit larry</td>
<td>24</td>
<td>Seedy cartoon "loser"</td>
</tr>
</table>
</div>
CSS
table {
border: 1px solid black;
}
td {
padding: 4px;
}