flex布局兼容iphone 6

最近在开发移动端页面的过程中发现了flex布局在iphone 6上不兼容的问题,经过测试和查阅资料现列出一下flex布局属性兼容方法。

display: flex    →   display: -webkit-flex
justify-content: space-between;   →   -webkit-justify-content: space-between
align-items: center;   →   -webkit-align-items: center
flex-direction: column;   →   webkit-flex-direction: column;
flex-wrap: wrap;   →   webkit-flex-wrap: wrap;

你可能感兴趣的:(flex布局兼容iphone 6)