JSFiddle - React, Tailwind, and code Playground
by lchau
HTML
<table>
<thead>
<tr>
<th>Name</th>
<th>Title</th>
<th>Phone Number</th>
<th>E-Mail</th>
</tr>
</thead>
<tbody>
<tr>
</tr>
</tbody>
</table>
CSS
th {
text-align: left;
}
table, td, th {
border: 1px solid silver;
border-collapse: collapse;
}
th, td {
padding: 3px 5px;
}