How to make a table column be a minimum width
There is a trick that involves setting some cells to a very small width, and then applying a white-space: nowrap property: <table> <tr> <td class=”min”>id</td> <td class=”min”>tiny</td> <td>Fills space</td> <td>Fills space</td> <td class=”min”>123</td> <td class=”min”>small</td> <td>Fills space, wider</td> <td>Fills space</td> <td class=”min”>thin</td> </tr> </table> td { width: auto; } td.min { width: 1%; white-space: nowrap; … Read more