在IE11中的pseduo类出现背景渐隐之后

时间:2019-06-05 18:40:21

标签: html css internet-explorer internet-explorer-11

我在IE11(惊奇)中得到了一个奇怪的结果,背景图像逐渐淡化。

我的CSS有这个

.parent {
  position: relative;
  min-height: 400px;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  color: #fff;
  z-index: 0;
  margin-top: 100px;
}

.parent::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 50%;
    bottom: 0;
    background: -webkit-linear-gradient(transparent, #FFF) left repeat;
    background: linear-gradient(transparent, #FFF) left repeat;
    min-height: inherit;
  }

但是当我在IE11中查看它时,它 sorta 可以正常工作,但是我在图像上遇到了困难:

enter image description here

不确定我要丢失什么?

0 个答案:

没有答案