<div style="position: absolute; top: 3000px;">dummy</div> <div id="footer">footer</div>css代码:
<style type="text/css">
#footer {
width: 100%;
height: 40px;
line-height: 40px;
background: #c00;
color: #fff;
text-align: center;
position: fixed;
left: 0;
bottom: 0;
}
</style>
js代码:<script type="text/javascript">
var footer = document.getElementById("footer");
var msie6 = /msie\s6/i.test(navigator.userAgent);
if(msie6) {
footer.style.position = "absolute";
footer.style.top =
document.documentElement.clientHeight -
footer.offsetHeight + "px";
}
window.onscroll = function() {
if(msie6) {
footer.style.top =
document.documentElement.scrollTop +
document.documentElement.clientHeight -
footer.offsetHeight + "px";
}
};
</script>
如果需要兼容 IE6,那就要使用 JavaScript,把上面的代码放到
