如何摆脱全宽/高度iframe周围的2像素边距?

时间:2013-10-15 15:52:33

标签: html css html5 css3 iframe

我有一个iframe,我想占用浏览器的整个宽度和高度:

<iframe src="http://example.com/index.html" width="100%" height="100%"></iframe>

不幸的是,它周围有一个2像素的边距,导致顶部和左侧出现一条丑陋的细线,以及出现的滚动条。我没试过就试过这个:

<iframe src="http://example.com/index.html" width="100%" height="100%" style="margin:0;padding:0;"></iframe>

1 个答案:

答案 0 :(得分:3)

也消除了边界:

<iframe src="http://example.com/index.html" width="100%" height="100%" style="border:0;margin:0;padding:0;"></iframe>