我想将三个div放在另一个下面。 即基本上要避免任何页面滚动,除了中间div。
<div id="one">
</div>
<div id="two">
</div>
<div id="three">
</div>
#one{
width:100%;
height: 10%;
}
#two{
width:100%;
height: 80%;
}
#three{
width:100%;
height: 10%;
}
即使内容高度低于80%,我也希望中心div占据全高。 如果内容高度> 80%;我想要一个滚动条出现。
我怎样才能用纯CSS实现这个目标?