Quantcast
Channel: Flexbox alternative for IE9 - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by Michael Rambeau for Flexbox alternative for IE9

One year later, this solution, using JavaScript to adjust the layout in older browsers, seems interesting =>https://github.com/10up/flexibilityAlmost 2000 stars on Github but the last commit was 3...

View Article



Answer by Scott Romack for Flexbox alternative for IE9

I like the above answer but you don't have to use modernizr.You could simply use table layout for ie9 and flexbox for others..container { display: table-cell; // ie9 display: flex; // others}

View Article

Answer by ptim for Flexbox alternative for IE9

Use modernizr to detect whether flex capabilities are present, and provide fallback styles where necessary. Modernizr will add classes like flexbox, no-flexbox, and flexbox-legacy to the html element,...

View Article

Flexbox alternative for IE9

I have developed a website with Chrome initially (easiest to design for) but now am getting to IE support model.That being said, I started with IE11 and made the necessary changes for the quirky...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images