JSFiddle - React, Tailwind, and code Playground

by Trần Ngọc Minh

HTML

<h2>Let the borders collapse:</h2>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
<tr>
<td>Lois</td>
<td>Griffin</td>
</tr>
</table>

CSS

table {
border-collapse: collapse;
}
table, td, th {
border: 1px solid black;
}