我觉得我不应该问这么简单的问题,但我找不到任何简单的答案。
我有一个可以是任何高度的标题。它下面的内容需要填满页面上的剩余空间(两者都包含在必要的容器div中)。如何通过HTML和CSS实现这一目标?我会考虑使用JavaScript,但是我希望在添加内容时调整大小,或者调整窗口大小等等。
HTML code:
<div id="container" >
<div id="header" >
<br/>
<br/>
...variable content in the header (not necessarily text)...
<br/>
<br/>
</div>
<div id="content"></div>
</div>
CSS代码:
#container
{
background-color:blue;
width:100%;
height:100%;
}
#header
{
background-color:green;
width:100%;
height:auto;
}
#content
{
background-color:red;
width:100%;
height:100px; /*The height here needs to fill the remaining space in the container div*/
}
答案 0 :(得分:3)
我认为这可能有助于您做您想做的事:http://jsfiddle.net/AGLDV/3/
html, body {
height:100%;
}
#container {
width:100%;
height:100%;
background:#ccc;
display:table;
}
#header {
height:1%;
width:100%;
background:blue;
display:table-row;
}
#content {
width:100%;
background:red;
display:table-row;
}
答案 1 :(得分:0)