【发布时间】:2020-01-10 11:46:42
【问题描述】:
我想让我自己的项目选项卡创建 4 个 div 并给它们 display:flex 和 align-items:center 一切正常,但我想制作例如 12 div 和 3 列,所以第一列将是 4 div 第二 4 和第三4
#projects #projects {
display: flex;
align-items: center;
margin-top:15px;
justify-content: center;
}
#projects div{
width:200px;
height:170px;
background: red;
display: inline-block;
margin:0 auto;
}
<div id="projects">
<div></div>
<div></div>
<div></div>
<div></div>
<!-- I want 8 more divs but when I add it they are all in one column -->
</div>
【问题讨论】: