Remove the Extra Whitespace Surrounding Iframes?

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

    Maybe that whitespace is actually the outside margin of the document loaded in the . Try styling the loaded document (CSS styling the source page) with:

    html, body {
      border: 0px;
      margin: 0px;
      padding: 0px;
    }
    

    quoted from stackoverflow.com Here

提交回复
热议问题