我有一個頁面的頂部和底部已知內容的網頁,以及未知的中間部分。中間部分可以短至100px或高於1000px。使div在每個瀏覽器的頁面底部出現
製作中間部分min-height: 100%;
不是選項。
我找到了一個很好的回答我的問題:
html{
height:100%;
width:100%;
}
body{
min-height:100%;
display:table;
}
.top{
display:block;
}
.main{
display:block;
}
.buttom{
display:table-footer-group;
}
<html>
<body>
<div class="top">
\t Fixed top box
</div>
<div class="main">
\t Box with unknown content
</div>
<div class="buttom">
\t Fixed buttom box
</div>
</body>
</html>
但由於某些原因,它不mozila瀏覽器。任何人都可以提出一些適用於每個瀏覽器
澄清:所有DIV應該是獨立的,並在任何情況下一個DIV出現在頂部的另一個
工作!謝謝! – levkaster