我正在尝试使用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搜索了也提到了这个问题,但没有帮助。
答案 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)