JSFiddle - React, Tailwind, and code Playground

by Qwerty_Wasd

HTML

<table>
  <colgroup>
    <col style="min-width:600px; 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{
  table-layout: fixed;
}