Flexbox' space-between'不在IE11中工作

时间:2018-01-03 18:09:44

标签: css css3 internet-explorer flexbox internet-explorer-11

我尝试使用flexbox将内容与顶部和底部对齐。它看起来应该很简单,但我无法在IE11中使用它。有什么想法/建议吗?



.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>
&#13;
&#13;
&#13;

0 个答案:

没有答案