[Solved] How to make table columns width dynamic? [closed]


It sounds like you’re looking for the nowrap attribute for a td element. More information here. Something like this:

<table>
  <tr>
    <td nowrap>
      This is a long sentence which constitutes a lot of data that shouldn't wrap when rendered.
    </td>
  </tr>
</table>

Demonstrated here.

solved How to make table columns width dynamic? [closed]