我的頁面佈局頁腳仍然在頁面的底部。問題是當我使用一些內容爲FLOAT的div時。如果我省略了浮動內容,則內容行爲正常並且不會溢出頁腳。 請參閱:頁腳底部的內容溢出頁腳
`enter code here`
http://jsfiddle.net/8o7t4wq9/1/
CSS:
html,
body {
margin:0;
padding:0;
height:100%;
}
#container {
min-height:100%;
position:relative;
}
#header {
background:#ff0;
padding:10px;
}
#body {
padding:10px;
padding-bottom:60px; /* Height of the footer */
}
#footer {
position:absolute;
bottom:0;
width:100%;
height:60px; /* Height of the footer */
background:#6cf;
}
HTML:
<div id="container">
<div id="header"></div>
<div id="body">
<div style="width:100%;min-height:500px;background-color:gray;clear:both;">IMAGES</div>
<div style="width:30%;min-height:1500px;margin:5px;background-color:green;float:left">First box of content</div>
<div style="width:30%;min-height:1500px;margin:5px;background-color:green;float:left">Second box of content</div>
</div>
<div id="footer">FOOTER</div>
</div>
'頁腳{明確:既;}' – madalinivascu