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:white;
border-radius: 10px 10px 0 0;
border-spacing:2px;
}
td {
padding:10px;
background:#FFCC99;
box-shadow: inset 0 0 0 5px red;
}
td.tleft {
border-radius: 10px 10px 0 0;
}
td.tcenter {
border-radius: 10px;
}
td.bcenter {
border-radius: 10px;
}