javascript - Why does Flexibilty.js does not allow this Flexbox Test to run on IE9 Compatability -


so developing web app uses flexbox. works fine in ie10/11, chrome, firefox etc not working in ie9 (compatability mode in ie11) because not support flexbox.

i found flexibility.js shim, many people seem have used , not find issues using it.

so per installation instructions added

<script src="js/flexibility.js"></script> 

to <head> of html page , added -js-display: flex following css:

.container .right .chat.active-chat {   -js-display: flex;   display: block;   display: -webkit-flex;   display: flex; } 

now according installation instructions should needed flexbox working on ie9, in this example i've hosted (because codepen/jsfiddle not work in ie9 themselves) can see divs class .bubble not appear anywhere on screen, though appear fine in other browsers.

is there in code stop flexibility.js working? or there problem stopping these divs being displayed correctly?


Comments

Popular posts from this blog

inversion of control - Autofac named registration constructor injection -

verilog - Systemverilog dynamic casting issues -

ios - Change Storyboard View using Seague -