JSFiddle - React, Tailwind, and code Playground

HTML

<table>
        <tr>
                <td class="tleft">Cell 1-1</td>
                <td class="tcenter">Cell 1-2</td>
                <td>Cell 1-3</td>
        </tr>
        <tr>
                <td>Cell 2-1</td>
                <td class="bcenter">Cell 2-2</td>
                <td>Cell 2-3</td>
        </tr>
</table>

CSS

table {
        background:green;
        border-radius: 10px 10px 0 0;
        border-spacing:2px;
}
td {
        padding:5px;
        background:#FFCC99;
        border: solid 5px red;
}
td.tleft {
        border-radius: 10px 10px 0 0;
        
}
td.tcenter {
        border-radius: 10px;
        
}
td.bcenter      {
        
    border-radius: 10px;
}