Remove the Extra Whitespace Surrounding Iframes?

后端 未结 10 851
花落未央
花落未央 2021-02-02 05:55

I am using iframes in my page, and have stumbled across a weird issue. I set the iframe css like so

iframe {
    margin: none;
    padding: none;
    background:         


        
10条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-02 06:26

    When you are using an inline element, the whitespace might be from the "line" the element is part of (ie. the space below the baseline). The solution then is to add this to its parent element.

    line-height: 0;
    

提交回复
热议问题