标签:
这里用的是CSS Sticky Footer,支持主流浏览器(包括IE6)
html
<div class="wrapper"> <div class="push">内容</div> </div> <div class="footer"> <p>©</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;}
标签:
原文地址:http://www.cnblogs.com/ecosu/p/4413597.html