我希望使用iframe嵌入的以下这些元素来填充页面的宽度。现在,尽管使用iframe,还是可以填充宽度,还是因为我使用iframe,是页眉,导航和页脚可以接触的最接近边缘的地方吗?
<header>
<iframe src="header.html" frameborder="0" width="100%" height="270"></iframe>
</header>
<div id="wrap">
<iframe src="nav.html" frameborder="0" width="100%" height="150"></iframe>
<iframe src="footer.html" frameborder="0" width="100%" height="100"></iframe>
</div>
来自CSS:
header {
background-color: #fff;
margin-bottom: -2%;
}
nav {
background-color: #2c3e2c;
overflow: auto;
}
nav a {
color: #fff;
font: 24px Tajawal, "Times New Roman", Arial, sans-serif;
text-decoration: none;
text-shadow: 2px 2px 3px #4e4337;
text-transform: uppercase;
}
footer {
background-color: #2c3e2c;
color: #fff;
font: 22px Tajawal, "Times New Roman", Arial, sans-serif;
padding: 1% 0 1% 0;
text-align: center;
}
答案 0 :(得分:2)
问题实际上并不是由于您使用iframe,而是由于浏览器在其页面上自动添加了8px
的{{1}}。要更正此问题(允许您的元素到达页面的绝对边缘),您需要设置以下内容:
margin