我想填充屏幕的長度,但100%高度的內容區域忽略了標題,這會使區域過長。其他SO解決方案不會完全工作。考慮到標題,內容區域高度100%
我需要能夠調整增長內容(頁面上的滾動條不是#mainView),並且當沒有足夠的內容來填充頁面時,#mainView應該填滿屏幕(沒有滾動)。
CSS:
html, body { height: 100%; margin: 0px; }
#container{margin:20px;height:100%}
#header { height: 80px; background: pink; }
#mainView { height: 100%; background: red; box-sizing: border-box; border:solid 4px pink;border-top:none; }
HTML:
<div id="container">
<div id="header">
--Header
</div>
<div id="mainView">
--Main
</div>
</div>
對不起有什麼問題。你希望你的內容重疊頭部? – Charles380
我更新了這個問題,更具體的 – Boone