Abhijeet
Abhijeet

Reputation: 13856

Allow Table cell to content to expand horizontally

Having specified table cell width <td style="width:100px"> when content width is more than 100px texts wraps to the next line.

How can we specify the cell width so that when content width is less than 100px, it should occupy 100px otherwise force the contents to expand horizontally.

Upvotes: 0

Views: 542

Answers (2)

Jasper de Vries
Jasper de Vries

Reputation: 20198

I think you need min-width

<td style="min-width:100px">

Upvotes: 2

Fabrizio Calderan
Fabrizio Calderan

Reputation: 123397

use min-width:

<td style="min-width:100px"> 

Upvotes: 3

Related Questions