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

前端 未结 7 1847
渐次进展
渐次进展 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:11

    I had some success with:

        min-width: 193px;
        width:auto !important; 
        _width: 193px;  /* IE6 hack */
    

    Based on a combination of Vatos' response and a min-height article here: http://www.dustindiaz.com/min-height-fast-hack/

提交回复
热议问题