IE10以下完全不兼容flex,IE10部分兼容,使用时对应chrome的用法为如下所示:
chrome IE10
display: flex; display: -ms-flexbox;
flex-direction: column; -ms-flex-direction: column;
justify-content: center; -ms-flex-pack: center;
justify-content:space-between; -ms-flex-pack: justify;
justify-content:space-around; -ms-flex-pack: justify; // 无法实现,用justfiy代替
justify-content: flex-end; -ms-flex-pack: end;
align-items: flex-start; -ms-flex-align: start;
align-items: center; -ms-flex-align: center;
align-items: flex-end; -ms-flex-align: end;
align-items: baseline; -ms-flex-align: baseline;