微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

flex 中间层的高度完全由flex元素决定

<!DOCTYPE html>
<html lang="en">
<head>
  <Meta charset="UTF-8">
  <Meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .fa{
      display: flex;
      flex-flow: row Nowrap;
      width: 300px;
      height: 100vh;
      border: 1px solid #000;
    }
    .fa .son1{
      /* 注意这里 son1是没有给高度的,但是son1后代demo1给了高度,son1的fa给了高度,
      那么,son1的高度完全由fa决定。
       */
      width: 100px;
      background: firebrick;
      
    }
    .fa .son1 .demo1{
      height: 2000px;
      width: 50px;
      background: darkgoldenrod;
    }
   
  </style>
</head>
<body>
  <div class="fa">
    <div class="son1">
      <div class="demo1"></div>
    </div>
    

  </div>
</body>
</html>

 

 

 

情况2:fa son1都没有给高度  demo1给了高度,最终fa son1的高度由demo1决定

<!DOCTYPE html>
<html lang="en">
<head>
  <Meta charset="UTF-8">
  <Meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    .fa{
      display: flex;
      flex-flow: row Nowrap;
      width: 300px;
      /* height: 200px; */
      border: 1px solid #000;
    }
    .fa .son1{
      
      width: 100px;
      background: firebrick;
      
    }
    .fa .son1 .demo1{
      height: 200px;
      width: 50px;
      background: darkgoldenrod;
    }
   
  </style>
</head>
<body>
  <div class="fa">
    <div class="son1">
      <div class="demo1"></div>
    </div>
    

  </div>
</body>
</html>

 

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。

相关推荐