flex布局

96 阅读1分钟

1.flex实现左边200px,右边自适应

  <div class="flexwrap">
    <div class="lt"></div>
    <div class="rt"></div>
  </div>
  
  <style>
    .flexwrap {
        display: flex;
        width: 100%
        height: 100vh;
    }
    .lt {
        width: 200px;
    }
    .rt {
        flex: 1; 
        // 或者width: 100%;
    }
  </style>