JSFiddle - React, Tailwind, and code Playground

by John Grivas

HTML

<table cellspacing=0 cellpadding=0>
    <tr>
        <td>
            This
        </td>
        <td>
            that
        </td>
        <td>
            the other.
        </td>
    </tr>
    <tr>
        <td>
            This
        </td>
        <td>
            that
        </td>
        <td>
            the other.
        </td>
    </tr>
</table>

CSS

table, tr {
 border: 1px solid black;
 border-color: #ACACAC;
 border-radius: 5px;
}
td{
    padding:5px;       
}
tr:not(:last-child) td{    
  border-bottom:1pt solid #ACACAC; 
}