如何从页面中删除Iframe的填充

时间:2014-09-25 11:59:47

标签: jquery html css iframe

我想删除iframe的填充(几个像素)。当我们在任何页面中使用iframe并使其高度和高度时宽度为100%,但它从左侧,右侧,上方和左侧的所有侧面留下几个像素。 down.how删除它。请查看此URL。 http://mindmaker.org.in/frame.php 我已从此页面中删除滚动条,但几乎没有像素从所有方面删除

2 个答案:

答案 0 :(得分:5)

您必须重置默认<body>填充/边距。

body {
  margin: 0;
  padding: 0;
}

希望这有帮助

答案 1 :(得分:1)

添加frameBorder =&#34; 0&#34; (资本&#34; B&#34;)

<iframe src="http://pragswebsolution.in/onlinetest/orgnisation.php" height="100%"         width="100%" frameBorder="0" style="overflow-y: hidden;"></iframe>