Skip to content Skip to sidebar Skip to footer

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 */
}

https://jsfiddle.net/w71t2247/12/

Post a Comment for "Flexbox In Ie Doesn't Set Item Widths Correctly"