Flexbox Alternative for IE9

Whats the best alternative for display:flex for the Inernet explorer?

This question may have already been answered in the following post:

https://stackoverflow.com/a/28709421/3943441

If this doesn't help out, please clarify what is different in your problem and I would be glad to continue helping in your search for a solution.

Why isn't there a flexbox polyfill for older browsers like IE9?

There is actually a library that does exactly what I wanted: https://github.com/jonathantneal/flexibility

It's in the very early phase of development, but hopefully it will be viable soon.

Is there a Mdl grid alternative for ie9? [angular4]

Looking at the Material Design Lite Grid SASS, the first thing that stands out is that it's using flexbox.

.mdl-grid {
display: flex;

https://github.com/google/material-design-lite/blob/mdl-1.x/src/grid/_grid.scss#L26

IE9 doesn't support flexbox, and it's so old it doesn't even show up in the default view of CanIUse anymore!

https://caniuse.com/#feat=flexbox

There are polyfills for flexbox, but it's a fairly complex CSS feature which means the polyfills might not work well, or might have poor performance, or both!

One such polyfill is flexibility.



Related Topics



Leave a reply



Submit