JSFiddle - React, Tailwind, and code Playground
HTML
<table border="0" cellspacing="0" cellpadding="0">
<thead>
<tr>
<th>Test1</th>
<th>Test2</th>
<th>Test3</th>
</tr>
<tr>
<th>Test1</th>
<th colspan="2">Test2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Test1</td>
<td>Test2</td>
<td>Test2</td>
</tr>
</tbody>
</table>
CSS
table {
border-left: 1px solid red;
border-top: 1px solid red;
}
th, td {
border-right: 1px solid red;
border-bottom: 1px solid red;
margin: 0;
padding: 5px;
}
thead th {
position: relative;
background: #f0f0f0;
top: 10px;
}