JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>
Lorem
</td>
<td>
Ipsum
</td>
</tr>
</table>
CSS
td{
border: 1px solid black;
padding: 2px 5px;
}
td:first-child{
border-right: none;
}
td:last-child{
border-left: none;
}