My CSS is:
.flex_web, .flex_tablet, .flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
It properly works in chrome, safari and firefox but not work in IE9.
I tried using display: table
property also ut it not work for me.
I am using angularjs in Cordova.
I want to know if there is any alternative available for flex in ie9.
Thanks