我觉得我不应该问这么简单的问题,但我找不到任何简单的答案。
我有一个可以是任何高度的标题。它下面的内容需要填满页面上的剩余空间(两者都包含在必要的容器 div 中)。如何使用 HTML 和 CSS 实现这一点?我会考虑使用 JavaScript,但我希望在添加内容或调整窗口大小等时自动调整大小。
HTML 代码:
<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*/
}