JSFiddle - React, Tailwind, and code Playground
by Cath_kb
HTML
<table>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
<tr>
<td>1</td>
<td>2</td>
<td>3</td>
</tr>
</table>
CSS
td{width: 50px; height: 50px; border:1px solid}
td:first-child{border-left:none}
td:last-child{border-right:none}
tr:first-child td{border-top:none}
tr:last-child td{border-bottom:none}