背景图像在Microsoft Edge中消失

时间:2016-12-11 17:22:50

标签: html css

出于某种原因,使用background-attachment: fixed时,我的背景图像在Microsoft边缘消失。但是在IE,Chrome和Firefox中运行良好。

css如下:

header
{
    text-align: center;
    color: #eee;
    background: url(../img/portfolio/66.jpg);
    background-size: cover;
    background-position: 70% 0%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

有什么想法吗?

此致

史蒂夫

1 个答案:

答案 0 :(得分:1)

我在新的视差项目中也遇到了类似的问题,我不确定是因为我将div的背景设置为“固定”;或溢出:隐藏。

但是当我尝试将背景CSS移到如下所示的innner div时,我的问题解决了。

<div class"header"><div class="bg"></div></div>
相关问题