首页 > 其他 > 详细

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

时间:2020-06-10 13:16:27      阅读:53      评论:0      收藏:0      [点我收藏+]
<!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>

 

技术分享图片

 

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

原文:https://www.cnblogs.com/xiaoliziaaa/p/13084401.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!