html footer置底部

魚落池中發表於2020-11-27

codepen演示地址:https://codepen.io/chriscoyier/pen/uwJjr

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

<footer class="site-footer">
  I'm the Sticky Footer.
</footer>
* {
  margin: 0;
}

html, body {
// 先把html撐開
  height: 100%;
}
.page-wrap {
  min-height: 100%;
  /* 相當於底部的高度 */
  margin-bottom: -142px; 
}
.page-wrap:after {
  content: "";
  display: block;
}
.site-footer, .page-wrap:after {
  height: 142px; 
}
.site-footer {
  background: orange;
}

相關文章