我正在设计一个完全适合浏览器窗口的网页,因此隐藏了滚动。
我在页面顶部有一个标题栏,宽度为 100%,高度为 40px。在标题栏下方,我在页面左侧有一个宽度为 15% 的导航栏,在页面右侧有一个宽度为 85% 的内容区域 DIV。
我无法让导航栏和内容区域的高度动态延伸到页面底部,不再进一步。使导航栏和内容区域在所有屏幕尺寸下都延伸到页面底部的最佳方法是什么?
作为参考,我的HTML代码如下所示:
<div id="headerBar">Header Bar</div>
<div id="navigationBar">Navigation Bar</div>
<div id="contentArea">Content Area</div>
我的CSS代码如下所示:
#headerBar{
width:100%;
height:40px;
background:rgb(35,35,35);
}
#navigationBar {
width:15%;
height:100%; /* Note that this doesn't work */
background:red;
}
#contentArea {
width:85%; /* if I use any padding or margin this box exceeds the browser width */
background:blue;
height:100%; /* as with #navigationBar, this doesn't work */
float:right;
}
+1 任何解决方案!提前致谢!!