css - Flexbox in IE10 -
i'm trying flex box working in ie10 it's not working. safari, chrome , firefox working fine, ie10 doesn't wanna work. knows answer?
codepen: http://codepen.io/anon/pen/vcegh/
display: -moz-box; /* old - firefox 19- (doesn't work well) */ display: -ms-flexbox; /* tweener - ie 10 */ display: -webkit-flex; /* new - chrome */ display: flex; /* new, spec - opera 12.1, firefox 20+ */ -webkit-box-direction: normal; -moz-box-direction: normal; -ms-flex-direction: row; -webkit-flex-direction: row; flex-direction: row; -webkit-box-lines: multiple; -moz-box-lines: multiple; -ms-flex-wrap: wrap; -webkit-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -moz-box-pack: justify; -ms-flex-pack: justify; -webkit-justify-content: space-between; justify-content: space-between;
for ie10 , span should displayed inline-block
trigger layout somehow .
test here if fixes : http://codepen.io/gc-nomade/pen/lhset
Comments
Post a Comment