我有 3 行 div 布局,页面底部有页脚,但我需要让内容 div 从页眉到页脚始终全尺寸。在内容 div 中,我还有一个 iframe,我需要让这个 iframe 始终处于 100% 的内容高度,然后在页眉和页脚之间保持 100% 的空间高度。这是我的(示例)页面:
<body>
<div id="container">
<div id="header">
logo
</div>
<div id="content">
<h2 id="appname"><img alt="App" src="/images/b_nextpage.png"> Home</h2>
<iframe class="appcont" src="" width="100%" height="100%" name="youriframe" frameborder="0" vspace="0" hspace="0" marginwidth="0" marginheight="0" scrolling="yes" noresize></iframe>
</div>
<div id="footer">
<button name="menu" type="button" id="menuopen"><img alt="App" src="/images/s_process.png"> <b>Menu</b>
</button>
</div>
</div>
</body>
这是我的CSS:
html, body {
font-family: sans-serif;
padding: 0em;
margin: 0em;
color: #444;
background: #fff;
text-align: center;
height: 100%; /* Important */
width: 100%;
}
#container {
margin: 0px auto;
text-align: center;
height: 100%;
}
提前感谢