本文介绍了即使在将frameborder设置为0之后,iframe边框周围仍然存在空白的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

即使将iframe中的frameborder属性设置为0,仍然在iframe边框周围存在一些空白(与原始网址/链接页不同)。有没有其他方法摆脱白色空间或一些白色必须呈现在iframe周围,因为它是在网页(或其中的一部分),它不能是整个页面?谢谢。

Even After setting the frameborder attribute in the iframe to 0 there is still some white space present around the iframe border (unlike the original url/link page). Is there any other way to get rid of the white space or some white must be presented around the iframe as it is within the webpage (or part of it) and it cannot be the whole page? Thank you.

推荐答案

也许空格实际上是加载在 iframe> 。尝试对加载的文档进行样式设置:

Maybe that whitespace is actually the outside margin of the document loaded in the <iframe>. Try styling the loaded document with:

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

这篇关于即使在将frameborder设置为0之后,iframe边框周围仍然存在空白的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 00:12