0

出于某种原因,我想将 iframe 用于 html5 布局。希望 panelframe 和 bodyframe 占据浏览器的整个高度,在顶部留出 56px 作为页眉,在底部留出 54px 作为页脚。但是下面的代码不起作用。

<iframe name="headerframe" width="100%" height="56" frameborder="0" src="header.html"></iframe>

<iframe name="panelframe" width="300" height="95%" frameborder="0" src="panel.html"></iframe>

<iframe name="bodyframe" width="auto" height="95%" frameborder="0" src="body.html" ></iframe>

<iframe name="footerframe" width="100%" height="54" frameborder="0" src="footer.html" ></iframe> 

有什么帮助吗?

4

1 回答 1

2

看看这个,样式化 wbsites 很容易

<div style="padding-top:54px;padding-bottom:54px" > 
    <iframe name="headerframe" width="100%" height="100" frameborder="0" src="header.html"></iframe>

    <iframe name="panelframe" width="100%" height="100%" frameborder="0" src="panel.html"></iframe>

    <iframe name="bodyframe" width="100%" height="100%" frameborder="0" src="body.html" ></iframe>

    <iframe name="footerframe" width="100%" height="100%" frameborder="0" src="footer.html" ></iframe>
</div>
于 2013-10-08T21:35:50.753 回答