我想用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搜索并提到了这个问题,但它没有帮助。
IE7 / IE8 http://css-tricks.com/rgba-browser-support/不支持rgba
.header
{
background: url("../images/header1.png");
background-repeat:no-repeat;
background-position:right 15px;
height: 55px;
padding: 5px 0 0;
width: 100%;
}