JSFiddle - React, Tailwind, and code Playground
HTML
<table>
<tr>
<td class="left"></td>
<td class="middle"></td>
<td class="right"></td>
</tr>
</table>
CSS
.left {
width:30px;
background-color:red;
height:200px;
}
.middle{
width:400px;
background-color:blue;
height:200px;
}
.right {
width:30px;
background-color:green;
height:200px;
}