I am trying to use flexbox to space some items properly within a div.
Solution 1:
IE has lots of rendering problem with flexbox.
In this case, flex-basis: 100%
seems to be the problem.
Instead, use width: 100%
.
li {
width: 100%;
}
https://jsfiddle.net/w71t2247/12/
Post a Comment for "Flexbox In Ie Doesn't Set Item Widths Correctly"