Here is my CSS:
.flex_web, .flex_tablet, .flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
This code functions properly in Chrome, Safari, and Firefox, but unfortunately does not work in IE9.
I attempted using the display: table
property, but it did not yield the desired results.
Currently, I am using AngularJS within Cordova.
I am curious if there are any alternative solutions available for achieving flexibility in IE9.
Your insights and suggestions are greatly appreciated. Thank you!