Remove the Extra Whitespace Surrounding Iframes?

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

    Bit difficult to solve without your html content, but give this a try:

    iframe {
        margin: 0px !important;
        padding: 0px !important;
        background: blue; /* this is just to make the frames easier to see */
        border: 0px !important;
    }
    
    html, body {
        margin: 0px !important;
        padding: 0px !important;
        border: 0px !important;
        width: 100%;
        height: 100%;
    }
    

    Adding the !important will force the style, coz my guess is that your styles are overwriting each other.

提交回复
热议问题