<!-- justify-content的使用 -->
<div class="container">
<div class="item">1</div>
<div class="item">2</div>
<div class="item">3</div>
</div>
.container{
width: 300px;
display: flex;
/* justify-content: 控制所有项目在主轴上的对齐方式; */
/* 本质是:设置容器中的剩余空间在所有 “项目之间”的分配方案 */
/* 1. 容器剩余空间在所有项目“二边”的如何分配 ,将全部项目视为一个整体*/
justify-content: flex-start;
justify-content: flex-end;
justify-content: center;
/* 2. 容器剩余空间在所有项目“之间”的如何分配 ,将项目视为一个个独立的个体*/
justify-content: space-between;
justify-content: space-around;
/* 分散对齐: 剩余空间在所有项目二侧平均分配 */
justify-content: space-evenly;
}
.container > .item{
width: 60px;
}
</style>