今天在寫h5活動的時候,使用到了flex布局,在chrome浏覽器手機模式下測試一切ok,然後使用真機(iphone 5c)時,就發現了各種問題?
在網上找了下flex布局的各種相容寫法,特此記錄下
原文位址:彈性布局各種坑爹相容
display:flex的相容寫法
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -weblit-flex;
display: flex;
定義子元素換行flex-firection的相容性寫法
-webkit-box-orient: verical;
-webkit-box-direction: normal;
-moz-box-orient: verical;
-moz-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
用box-orient:horizontal+box-direction:normal/reverse可以達到flex-direction:row/row-reverse效果
用box-orient:vertical+box-direction:normal/reverse可以達到flex-direction:column/column-reverse效果
定義子元素換行flex-wrap的相容性寫法
-webkit-flex-wrap: wrap;
-webkit-box-lines: multiple;
-moz-flex-wrap: wrap;
flex-wrap: wrap;
flex-flow: flex-direction flex-wrap的相容寫法
-webkit-flex-flow: row wrap;
-webkit-box-orient: horizontal;
-webkit-box-lines: multiple;
-moz-flex-flow: row wrap;
box-orient: horizontal;
box-lines: multiple;
flex-flow: row wrap;
橫向排列布局justify-content的相容寫法
-webkit-justify-content: center;
justify-content: center;
-moz-box-pack: center;
-webkit-box-pack: center;
box-pack: center;
豎向排列布局align-items的相容寫法
-webkit-align-items: center;
align-items: center;
-webkit-box-align: center;
-moz-box-align: center;
box-align: center;
伸縮盒子布局的相容寫法
-webkit-box-flex: num;
-moz-box-flex: num;
box-flex: num;
-webkit-flex: num;
flex: num;