这是一个链接,显然是粘性页脚的“最佳”解决方案(只有当页面上的内容很少时才会停靠。)
http://ryanfait.com/sticky-footer/
当您在任何其他浏览器(Firefox,我测试过的Chrome)中调整窗口大小时,页脚随窗口移动。在IE7中,它不会移动,您需要刷新页面才能使其正确定位。
谷歌似乎能够做到这一点,所以我想知道,他们是如何设法做到的,我不能这样做?他们使用的是JavaScript,还是我缺少优雅的CSS解决方案?答案 0 :(得分:5)
之前我使用过Chris Coryier的解决方案,从来没有遇到任何IE问题:http://css-tricks.com/snippets/css/sticky-footer/
<强> CSS 强>
* { margin:0; padding:0; }
html, body, #wrap { height: 100%; }
body > #wrap {height: auto; min-height: 100%;}
#main { padding-bottom: 150px; } /* must be same height as the footer */
#footer {
position: relative;
margin-top: -150px; /* negative value of footer height */
height: 150px;
clear:both;
}
/* CLEAR FIX*/
.clearfix:after {content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearfix {display: inline-block;}
/* Hides from IE-mac \*/
* html .clearfix { height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
<强> HTML 强>
<div id="wrap">
<div id="main" class="clearfix">
</div>
</div>
<div id="footer">
</div>
答案 1 :(得分:0)
这是我使用的,它一直对我有用。