How do I specify in HTML or CSS the absolute minimum width of a table cell

前端 未结 7 1846
渐次进展
渐次进展 2020-12-24 10:39

Summary

What\'s the best way to ensure a table cell cannot be less than a certain minimum width.

Example

I want to ensure that all cells in a ta

7条回答
  •  别那么骄傲
    2020-12-24 11:31

    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)

提交回复
热议问题