【发布时间】:2019-03-12 09:37:39
【问题描述】:
我正在尝试将我的 div 对齐到页面的中心,但我不知道如何使用 justify 选项来做到这一点。
html:
<div class="flex-container">
<div class="box" *ngFor='let movie of moviesArray;let i=index'>
....
</div>
</div>
css:
.flex-container{
display: flex;
background-color: white;
flex-flow: column;
flex-wrap: wrap;
margin:0 auto;
}
.box{
width:80%;
flex: 0 0 100px;
background-color:#f4f4f4;
margin:10px 0;
padding:20px;
}
....
感谢任何帮助:)
【问题讨论】:
标签: html css flexbox centering