我已經使用不同的頁面這個網站的頁面結構:第二內容的div填充剩下的高度,其中,第一內容的div有不同的高度
<div class="conteiner">
<div class="header">green</div>
<div class="fit_on_content">red<br />red</div>
<div class="fit_all">aqua</div>
<div class="footer">yellow</div>
</div>
這個CSS
.conteiner {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-color: aquamarine;
}
.header {
position: relative;
top: 0;
height: 50px;
width: 100%;
background-color: green;
}
.fit_on_content {
position: relative;
display: table;
margin: 0 auto;
background-color: red;
}
.fit_all {
background-color: aqua;
????
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 50px;
background-color: yellow;
}
.header
位於屏幕的最佳。
.footer
位於底部。
.fit_on_content
位於標題下,其內容高度可能會因頁面而異。
.fit_all
位於fit_on_content之下並且必須延伸到頁腳。
有什麼想法嗎?
感謝
入住這[演示](https://jsfiddle.net/57w9cswv/) – Webruster