通过 flex-direction: column;
可以改变flex布局的主轴方向。
HTML
<div class="box">
<div>1</div>
<div>2</div>
</div>
CSS
.box {
width: 500px;
height: 500px;
background-color: pink;
display: flex;
/* 设置主轴的方向 */
/* flex-direction: row; */
flex-direction: column;
justify-content: center;
align-items: center;
}
.box div {
width: 150px;
height: 150px;
background-color: skyblue;
}
1 条评论
主题紧扣时代脉搏,具有现实意义。