IE7,IE8中不显示背景图像css

问题描述 投票:4回答:2

我想用css给div一个背景图像。这是我的CSS

.header {
    background: url("../images/header1.png") no-repeat scroll right 15px rgba(0, 0, 0, 0);
    height: 55px;
    padding: 5px 0 0;
    width: 100%;
}

即使在IE9和IE10上,这在firefox和chrome上工作正常,但它不适用于IE8或更早版本。我用Google搜索并提到了这个问题,但它没有帮助。

Background image not showing IE8

css internet-explorer-8 internet-explorer-7
2个回答
-1
投票

1
投票
 .header
    {
    background: url("../images/header1.png");
    background-repeat:no-repeat;
    background-position:right 15px;
    height: 55px;
    padding: 5px 0 0;
    width: 100%;
    }
© www.soinside.com 2019 - 2024. All rights reserved.