问题:一行最多显示3个item,实现最后一行居左
<div class="chart-wrap">
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
<div class="chart-item">图</div>
</div>
推荐阅读:
最强大的 CSS 布局 —— Grid 布局
1. 使用grid布局
.chart-wrap {
display: grid;
/* 声明列的宽度 */
grid-template-columns: repeat(auto-fill, 500px);
/* 声明行间距和列间距 */
grid-gap: 30px;
/* 声明行的高度 */
grid-auto-rows: 250px;
justify-content: center;
justify-items: center;
.chart-item {
width: 500px;
}
}
**优点:**每个item会随屏幕大小变化换行
2. 使用flex布局:justify-content: center;
.chart-wrap {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 1680px;
margin: 0 auto;
&::after {
content: '';
flex: auto;
}
.chart-item {
width: 500px;
margin: 30px;
}
}
缺点:.chart-wrap需要设置固定宽度
(500+30*2)*3=1680px,每个item不会随屏幕大小变化换行。
3. ×使用flex布局:justify-content: space-between;
.chart-wrap {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 auto;
.chart-item {
width: 500px;
margin: 30px;
}
}
优点:可以实现仅剩1个的最后一行居左,每个item会随屏幕大小变化换行
缺点:最后一行有2个会两边对齐×;当屏幕大小刚好是放不下3个item时,两边对齐中间间隙特别大、不美观。