Iframe creates extra space below

后端 未结 9 1189
無奈伤痛
無奈伤痛 2020-12-30 18:23

Why does an iframe add extra space under its element? Look at this weird behavior:

9条回答
  •  温柔的废话
    2020-12-30 19:00

    The iframe element is an inline element. One way of fixing the spacing issue is adding display: block, but you can also fix it by simply adding vertical-align: bottom; to the iframe element.

提交回复
热议问题