0

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

Rahi.Shah
  • 1,305
  • 11
  • 20

1 Answers1

0

flex is supported in IE10+, but IE10 is very buggy and supports only an old specification: caniuse

IE11 has fewer bugs and you can workaround some of them flexbugs

itacode
  • 3,721
  • 3
  • 21
  • 23