不管页面内容是不是占满一屏,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都保持在最底部的主要内容,如果未能解决你的问题,请参考以下文章

android 怎么让listview 不够一屏 占满一屏

footer位置的自动适配(主内容不足一屏时显示在最底部,超出一屏时跟随主内容显示)

H5页面内容较少时如何让页面全屏在手机显示呢

DIV+CSS:页脚永远保持在页面底部

关于页面最外层布局及样式

关于 web 页面 占满全屏