JSFiddle - React, Tailwind, and code Playground
by Qwerty_Wasd
HTML
<table >
<colgroup>
<col style="width:600px; min-width:600px; background-color:red">
<col style="background-color:yellow">
</colgroup>
<tr>
<th></th>
<th>Title</th>
</tr>
<tr>
<td></td>
<td>My first HTML</td>
</tr>
</table>
CSS
table{
width: 100%;
table-layout: fixed;
}