Flexbox In IE Doesn't Set Item Widths Correctly
I am trying to use flexbox to space some items properly within a div.
- Some cool
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 {
/* flex-basis: 100%; */
width: 100%; /* new */
}
Post a Comment for "Flexbox In IE Doesn't Set Item Widths Correctly"