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
IE6 handles width as min-width:
td { min-width: 100px; _width: 100px;/* IE6 hack */ }
If you want IE6 to handle width like normal browsers, give it an overflow:visible; (not the case here)