我想創建一個頁面,將具有未知高度(或最小高度)的頁眉和頁腳div和中間內容與滾動,如果內容增加,所有這三個只適合在屏幕上。未知頁眉,頁腳高度和中間內容與滾動?
我在下面試過,如果頁眉和頁腳的高度是固定的,並且只有中間內容增加,那麼我會完美滾動內容div。如何處理頁眉和頁腳的未知高度部分以使其適合?我給了最小高度,但不起作用。
#Pageheader {
position: fixed;
top: 0;
left: 0;
right: 0;
height: 100px;
background-color: Blue;
}
#Pagefooter {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 100px;
background-color:red;
}
#Pagecontent {
position: fixed;
top: 100px;
bottom: 100px;
left: 0;
right: 0;
background-color: #EEEEEE;
overflow: auto;
}
和HTML側
<body>
<form id="form1" runat="server">
<div id="Pageheader">
</div>
<div id="Pagecontent">
</div>
<div id="Pagefooter">
</div>
</form>