首页 > 其他 > 详细

flex兼容

时间:2019-02-15 15:48:04      阅读:209      评论:0      收藏:0      [点我收藏+]
.flex {
display: flex;
display: box;
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
}
.align-items {
align-items: center;
-webkit-align-items: center;
box-align: center;
-moz-box-align: center;
-webkit-box-align: center;
}
.flex-direction {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-moz-box-orient: vertical;
-moz-box-direction: normal;
flex-direction: column;
-webkit-flex-direction: column;
}
.flex-wrap {
-webkit-flex-wrap: wrap;
-webkit-box-lines: multiple;
-moz-flex-wrap: wrap;
flex-wrap: wrap;
}
.justify-content {
-webkit-justify-content: center;
justify-content: center;
-moz-box-pack: center; 
-webkit--moz-box-pack: center;
box-pack: center;
}

 

flex兼容

原文:https://www.cnblogs.com/Z-Z-P/p/10383954.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!