我在一个页面中创建了两个 div,一个是标题,另一个是内容
<div id="main">
<div id="header">
</div>
<div id="content">
</div>
</div>
而且风格是
<style>
#main{
height:100%;
}
#header{
height:100px
}
#content{
height:???? // to fit the content 100% on any kind of screen
}
</style>
我想根据屏幕调整内容。屏幕高度可以是 100 像素,也可能是 2000 像素。我怎么能用css做到这一点。我不希望底部有空白或滚动页面