固定bottom,頁面其它可滑動實現方案

利用flex佈局,html

<html>
  <body>
    <div class='container'>
      <div class='content'></div>
      <div class='footer'></div>
    </div>  
  </body>
</html>
#root {
  height: 100%  
}
.container {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height:100%;
}

.content {
  -webkit-box-flex: 1;
  overflow: scroll;
}
.footer {
  height:100px;  
}
相關文章
相關標籤/搜索