css整理:弹性布局

弹性布局:

.hbox,.vbox{
display: flex;
display: -webkit-box;
display: -ms-flexbox;
}
 
.hbox{
-webkit-box-orient: horizontal !important;
-ms-flex-direction: row !important;
flex-direction: row !important;
}
.vbox{
-webkit-box-orient: vertical !important;
-ms-flex-direction: column !important;
flex-direction: column !important;
}

猜你喜欢

转载自www.cnblogs.com/quhongxin/p/10876151.html