html中頁腳跑上去是怎么回事?
固定頁腳
為了固定頁腳,在CSS中將頁腳的位置設置為固定位置:固定并將頁腳放置在頁面底部的底部:0px.這是CSS-Tricks的代碼片段.
#footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.offsetHeight)+(document.documentElement.clientHeight ? document.documentElement.clientHeight : document.body.clientHeight)+(ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop))+'px');
}