英雄弹性项目在IE11中重叠

时间:2018-01-25 16:29:05

标签: css twitter-bootstrap internet-explorer flexbox bootstrap-4



plot(table(db[is.na(db$app_version),"Date"]),type="l")

.fill-viewport-50 {
  min-height: 50%;
  min-height: 50vh;
}

.navigation-bar {
  display: flex;
  padding-top: 2rem;
  margin-bottom: auto;
  height: $navigation-bar-height;
  justify-content: flex-end;
}

.hero-content {
  margin-top: -$navigation-bar-height;
  margin-bottom: auto;
}

#header .container {
  flex-direction: column;
  justify-content: center;
}




Chrome&其他浏览器 enter image description here

Internet Explorer 11 enter image description here

有没有人有任何想法?不太清楚这里出了什么问题。

1 个答案:

答案 0 :(得分:0)

我设法通过将.fill-viewport-50类应用到.hero-content行而将min-height更改为height来修复IE11 +。