粘性页脚

Avatar of Chris Coyier
Chris Coyier

如果您能够为页脚应用固定高度,则效果很好。

<div class="page-wrap">
  
  Content!
      
</div>

<footer class="site-footer">
  I'm the Sticky Footer.
</footer>
* {
  margin: 0;
}
html, body {
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* equal to footer height */
  margin-bottom: -142px; 
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  height: 142px; 
}
.site-footer {
  background: orange;
}

查看 CodePen 上 Chris Coyier (@chriscoyier) 编写的 Pen Sticky Footer