Why does table-caption increase the height of the table?

前端 未结 2 1100
不思量自难忘°
不思量自难忘° 2021-01-19 00:16

Both tables have their height set to 50px and their content is not overflowing. But the table with a caption is actually 70px, because the caption does not appear to be incl

2条回答
  •  清歌不尽
    2021-01-19 00:46

    According to the spec, the caption is actually above or below the table box. It is therefore removed from the height specified on the table.

    17.4.1 Caption position and alignment

    This property specifies the position of the caption box with respect to the table box.

    Values have the following meanings:

    top

    Positions the caption box above the table box.

    bottom

    Positions the caption box below the table box.

    Diagram of a table with a caption above it.

    source: https://www.w3.org/TR/CSS2/tables.html#model

提交回复
热议问题