不管页面内容是不是占满一屏,footer都保持在最底部
Posted 可以叫我老张
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了不管页面内容是不是占满一屏,footer都保持在最底部相关的知识,希望对你有一定的参考价值。
直接上代码:
<style>
*{ margin:0; padding:0}
#container{background:#33CCFF}
#footer{background:#FFCC00;width:100%;}
</style>
<div id="container"> 5416416410</div>
<div id="footer">bottom</div>
<script language="javascript" type="text/javascript">
function test(){
var infoHeight = document.getElementById("container").scrollHeight;
var bottomHeight = document.getElementById("footer").scrollHeight;
var allHeight = document.documentElement.clientHeight;
var bottom = document.getElementById("footer");
if((infoHeight + bottomHeight) < allHeight){
bottom.style.position = "absolute";
bottom.style.bottom = "0";
}else{
bottom.style.position = "";
bottom.style.bottom = "";
}
setTimeout(function(){test();},10);
}
test();
</script>
以上是关于不管页面内容是不是占满一屏,footer都保持在最底部的主要内容,如果未能解决你的问题,请参考以下文章