flex flex-grow的用法

Posted malong1992

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flex flex-grow的用法相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport"
          content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>flex-grow</title>
    <style>
        .box {
            width: 560px;
            height: 500px;
            background-color: red;
            /*1.开启flex布局
                    flex:块级元素
                  inline-flex:行内元素 */
            display: flex;
        }
        .item {
            width: 100px;
            height: 100px;
        }
        .item1 {
            background-color: blue;
            height: 60px;
            /*(560-100*3 )*2/(2+2+3) = 74.29*/
            flex-grow: 2;

        }
        .item2 {
            background-color: #0f0;
            height: 150px;
            flex-grow: 2;

        }

        .item3 {
            background-color: #ccc;
            height: 120px;
            flex-grow: 3;

        }

    </style>
</head>
<body>
         <div class="box">
             <div class="item item1">item1</div>
             <div class="item item2">item2</div>
             <div class="item item3">item3</div>
         </div>
</body>
</html>

  效果图

技术图片

 

技术图片

以上是关于flex flex-grow的用法的主要内容,如果未能解决你的问题,请参考以下文章

flex 项目不使用 flex-grow 扩展或收缩

理由 - 内容和flex-grow被忽略

Flex弹性盒子中`flex-grow`,`flex-shrink`,`flex-basis`的区别

img 设置 flex-grow 来填充 flex 容器的剩余空间,它会导致 flex 内部溢出 flex 容器 [重复]

关于flex的三属性flex-grow

如何使用 flex-grow 使图像填充 flex 项目?