Remove the Extra Whitespace Surrounding Iframes?

后端 未结 10 586
花落未央
花落未央 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:36

    I had the same problem and i fixed it by floating the frame element

    iframe {
    
        margin: none;
        padding: none;
        border: none;
        line-height: 0;
        float: left; 
    }
    

提交回复
热议问题