Footer固定在底部

这里用的是CSS Sticky Footer,支持主流浏览器(包括IE6)

html

<div class="wrapper">
<!--页面内容-->
<
div class="push"></div> <!--添加一个div--> </div> <div class="footer"> <p>&copy;</p> </div>

css

*{margin:0;}
html,body{height:100%;}
.wrapper{
min-height:100%;
height:auto !important;
height:100%; 
margin:0 auto -60px; /*这个要与footer和push的值相等*/
}
.footer,.push{
height:60px;}
原文地址:https://www.cnblogs.com/ecosu/p/4413597.html