我在我的网页中使用iframe,偶然发现了一个奇怪的问题.我这样设置了iframe css
iframe {
margin: none;
padding: none;
background: blue; /* this is just to make the frames easier to see */
border: none;
}
Run Code Online (Sandbox Code Playgroud)
但是,iframe周围仍有空白.我在Chrome和Firefox中测试过它,它也是一样的.我四处搜寻,找不到任何东西.这个空白也不会出现在Chrome控制台中.另外,我已经有了以下CSS:
html, body {
margin: 0px;
padding: 0px;
border: 0px;
width: 100%;
height: 100%;
}
Run Code Online (Sandbox Code Playgroud)
JSFiddle:这里