What\'s the best way to ensure a table cell cannot be less than a certain minimum width.
I want to ensure that all cells in a ta
what about this css property
min-width: 100px
but it doesn't really work in IE6 if not mistaken
if you don't want to do it in the css way, I suppose you can add this attribute
nowrap="nowrap"
in your table data tag