我正在尝试在行设计中制作 3 个 div。页眉和页脚具有固定高度的位置。中心 div 扩展以填充空白空间。我已经尝试过,但我得到的最接近的是下面的代码。在页脚 div 上扩展的中心 div 仍然存在问题。
html:
<div id='container'>
<div id='rowOne'>row 1</div>
<div id='rowTwo'>row 2</div>
<div id='rowThree'>row 3</div>
</div>
CSS:
#rowOne {
width: 100%;
height: 50px;
background: green;
}
#rowTwo {
width: 100%;
background: limegreen;
height:100%;
overflow:hidden;
}
#rowThree {
width: 100%;
position: fixed;
clear: both;
background: green;
position:absolute;
bottom:0;
left:0;
height:50px;
}
#container {
height: 100%;
}