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

[ad_1]

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.

[ad_2]

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