美文网首页
CSS Flex align-content 多元素的分布

CSS Flex align-content 多元素的分布

作者: GaoEnron | 来源:发表于2020-01-01 15:18 被阅读0次

    align-content 分布方式

    属性定义了多根轴线的对齐方式

    1.0 align-content: space-between 多轴的平均分布

    多轴的平均分布

    align-content: space-between;
    
    article {
        display: flex;
        border: solid 5px silver;
        border-color: #8A2BE2;
        width: 200px;
        height: 580px;
        background: red; /*  */
        flex-wrap: wrap;
        flex-direction: row;
            align-content: space-between;
    }
    
    屏幕快照 2020-01-01 下午12.49.36.png
    2.0 多轴的平均分布周围有距离

    多轴的平均分布

     align-content: space-around;
    
    article {
        display: flex;
        border: solid 5px silver;
        border-color: #8A2BE2;
        width: 200px;
        height: 580px;
        background: red; /*  */
        flex-wrap: wrap;
        flex-direction: row;
        align-content: space-around;
    }
    
    Jietu20200101-125400.jpg

    相关文章

      网友评论

          本文标题:CSS Flex align-content 多元素的分布

          本文链接:https://www.haomeiwen.com/subject/yktmoctx.html