css中align-content属性是什么

发布日期:2023-05-26 浏览次数:4

1、align-content可以看成是和justify-content是相似且对立的属性,是指垂直方向每一行 flex子项的对齐和分布方式。

2、只适用于多行的flex容器,并且当交叉轴上有多余空间使flex容器内的flex线对齐。

css align-content 实例

*{
    margin:0px;
    padding: 0px;
}
div{
    border: 1px solid #0f0f0f;
}
.child-1{
    margin: 30px auto;
    display: flex;
    width: 100px;
    height: 60px;
    justify-content: space-around;
    align-content: center;
}
.child-2{
    width: 30px;
    height: 20px;
}
如果您有什么问题,欢迎咨询技术员 在线沟通