vue项目中h5移动端中通过flex布局实现首尾固定,中间滚动(借鉴)

Posted dinghaoran

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue项目中h5移动端中通过flex布局实现首尾固定,中间滚动(借鉴)相关的知识,希望对你有一定的参考价值。

html

<div class="flexLayoutr">  
    <div class="div_head"></div>  
    <div class="div_content">中间区域</div>  
    <div class="div_foot"></div>    
</div>  

css中

*{  
      margin: 0;  
      padding: 0;  
  }  
  .flexLayout{ 
      display: flex; 
      display: -webkit-flex;  
      min-height: 100vh;  
      flex-direction: column;  
  }  
  .div_head{
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
    position:absolute;
    z-index:5;
    top:0;
  }
  .div_bottom{
    width:100%;
    position:absolute;
    z-index:200;
    bottom:0;
  }
  .div_content{
    width:100%;
    overflow:auto;
    top:6.8rem;
    position:absolute;
    z-index:10;
    bottom:4.6rem;
  }

  

以上是关于vue项目中h5移动端中通过flex布局实现首尾固定,中间滚动(借鉴)的主要内容,如果未能解决你的问题,请参考以下文章

Vue 项目中的移动端适配方案

如何在Vue项目中使用vw实现移动端适配

转:如何在Vue项目中使用vw实现移动端适配

H5移动端知识点总结

H5移动端知识点总结

H5移动端知识点总结