伪元素在ie10中与flexbox组合消失

时间:2017-08-16 10:38:28

标签: css internet-explorer flexbox internet-explorer-10 pseudo-element

我对IE10和flexbox有疑问。目前我使用的代码如下面的代码段。

col 2的内容有一个可变长度(有多个小元素),它应该占用它所需的宽度。我想要在它们之间有一条线的行。因此,我添加了一个伪元素,通过order将其放在正确的位置,宽度为100%。

Chrome,Firefox等可以渲染此示例,但如果我使用IE10运行它,则伪元素会消失,第二行的内容会自动移动到第一行。

IE10是否能够与flexbox一起呈现伪元素?你知道一个' hack'迫使这个突破?



/* Container */
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 200px;
 }

.container:after {
  background-color: #000;
  content: '';
  height: 2px;
  margin: 5px 0;
  order: 3;
  width: 100%;
}
/* Child */
.child {
  width: 100px;
  border: 1px solid red;
  box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  text-align: center;
}
/* Positioning of the childs */
.c1 {
  order: 1
}

.c2 {
  order: 2
}

.c3 {
  order: 4
}

.c4 {
  order: 5
}

<div class="container">
  <div class="child c1">row 1 col 1</div>
  <div class="child c2">row 1 col 2</div>
  <div class="child c3">row 2 col 1</div>
  <div class="child c4">row 2 col 2</div>
</div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

您需要为.container添加此样式才能在IE10中使用:

display: -ms-flexbox;
-ms-flex-wrap: wrap;