flex佈局時,內容區域自適應高度

頁面元素高度固定,中間的元素須要撐滿屏幕,或者內容多時顯示滾動條時,咱們要把父元素設置爲height:100vhhtml

<div class="parent">
  <div class="header">

  </div>
  <div class="content">

  </div>
  <div class="footer">
    
  </div>
</div>

  

.parent{
  display: flex;
  height: 100vh;
}
.header{
  height: 100px;
}
.content{
  flex: 1;
}
.footer{
  height: 100px;
}
相關文章
相關標籤/搜索