如何创建一个HTML布局,其顶部有一个固定的工具栏,底部有一个固定的工具栏 - 以及一个居中的DIV(居中,垂直和水平)。此外,当用户调整窗口大小时,我试图让居中的DIV响应。
我已经包含了一个模型/屏幕截图:
答案 0 :(得分:1)
这可以帮忙吗?
html, body{
margin: 0;
height: 100%;
background-color: #555;
}
#topToolBar{
position: absolute;
top: 0;
height: 50px;
width: 100%;
background-color: #ccc;
}
#bottomToolBar{
position: absolute;
bottom: 0;
height: 50px;
width: 100%;
background-color: #ccc;
}
#centerDivWrapper{
width: 80%;
height: 100%;
margin: 0 auto;
}
#centerDiv{
padding: 55px 0;
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
#centerDivContent{
width: 100%;
height: 100%;
-webkit-box-sizing: border-box;
box-sizing: border-box;
background-color: #fff;
border: solid 3px #000;
overflow-y: auto;
}
<div id="topToolBar"></div>
<div id="centerDivWrapper">
<div id="centerDiv">
<div id="centerDivContent">
Lorem ipsum dolor sit amet
</div>
</div>
</div>
<div id="bottomToolBar"></div>