【发布时间】:2017-04-08 02:28:45
【问题描述】:
.container {
display:flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: center;
min-height: 4em;
}
.nav {
flex: 0 0 4em;
height: 1em;
}
.logo {
flex: 1 0 auto;
align-self: stretch;
}
这是我希望在 Chrome 49 中的工作方式:
但不在 IE11 中:
我已检查 IE 未处于兼容模式 - 不是 - 它处于 IE11 模式。
这里发生了什么?
【问题讨论】:
标签: html css flexbox internet-explorer-11