Details
-
Bug
-
Status: Closed
-
Trivial
-
Resolution: Fixed
-
2.10.3
-
None
-
Patch
Description
The attaches patch will fix:
- Use image "src" attribute instead of "href"
- Rendering glitches in IE 11 due to different interpretation of flex
http://stackoverflow.com/questions/21600345/flexbox-and-internet-explorer-11-displayflex-in-html
> "IE10 and IE11 default values for flex are 0 0 auto rather than 0 1 auto,
> as per the draft spec, as of September 2013"
> So in plain words, if somewhere in your CSS you have something like this:
> flex:1 , that is not translated the same way in all browsers. Try changing it
> to 1 0 0 and I believe you will immediately see that it kinda works.