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

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

    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

提交回复
热议问题