Min-width and max-height for table attributes

前端 未结 3 1150
遇见更好的自我
遇见更好的自我 2020-11-27 07:57

I have a table and I want to define the min-width and max-height properties. See example below.

My problem now is that the browser doesn\'t

3条回答
  •  萌比男神i
    2020-11-27 08:33

    For table cells the 'width' property should be used, as the 'min-width' and 'max-width' is undefined for table cells. See the specification:

    "In CSS 2.1, the effect of 'min-width' and 'max-width' on tables, inline tables, table cells, table columns, and column groups is undefined."

    To enforce the width, you may try to change the table-layout property to "fixed". The specification describes the algorithm pretty clearly.

提交回复
热议问题