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

时间:2014-01-16 10:43:04

标签: css internet-explorer-8 internet-explorer-7

我正在尝试使用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%;
}

这在firefox& Chrome甚至在IE9和IE10也可以在IE8或旧版本中使用。我用Google搜索了也提到了这个问题,但没有帮助。

Background image not showing IE8

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:-1)