小编典典

“全屏”<iframe>

html

当我使用以下代码创建iframe时:

<iframe src="mypage.html" style="border: 0; width: 100%; height: 100%">Your browser doesn't support iFrames.</iframe>

iframe不能完全解决问题-iframe周围有10像素的白色“边框”。我该如何解决?


阅读 326

收藏
2020-05-10

共1个答案

小编典典

The body has a default margin in most browsers. Try:

body {
    margin: 0;
}

in the page with the iframe.

2020-05-10