css - is it possible display: inline-flex in IE 9? -
css - is it possible display: inline-flex in IE 9? -
is possible workaround display:inline-flex in ie 9
<div style="display:inline-flex"> test </div>
i understand question, aware of fact ie9 does not back upwards flexbox. polyfill flexbox, named flexie.js, exist (not maintained afaik), works using old 2009 syntax of flexbox.
using old syntax of course of study not recommended, since 2009 syntax outdated , many browsers won't recognize anymore. but, can seek utilize autoprefixer, transforms new-syntax rules old-syntax rules (while preserving new-syntax browsers back upwards it).
there caveats - won't able utilize inline-style, have write styles in css files, , don't think supports dynamic changes dom.
disclaimer: haven't tried method ie9 + flexie.
css css3 internet-explorer-9
Comments
Post a Comment