Flexbox "space between" does not work in IE11

I am trying to align content on top and bottom using flexbox. It seems like it should be simple, but I can't get it to work in IE11. Any ideas / suggestions?

.wrap {
  display: flex;
  flex-direction: column;
  min-height:100vh;
  justify-content: space-between;
}
<div class="wrap">
  <div class="top">Top</div>
  <div class="bottom">Bottom</div>
</div>
Run codeHide result
+4
source share

Source: https://habr.com/ru/post/1691700/


All Articles