JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td>Data</td>
<td class="bully " rowspan="2">Pushing</td>
</tr>
<tr>
<td>Data</td>
<td class="pushedOut">Td should have been avoided Data</td>
</tr>
</table>
CSS
td{
border:1px solid black;
}
.pushedOut{
background:red;
}
.bully{
background:blue;
}