我尝试使用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;