我的背景图片出现在chrome和firefox中,但不出现在IE 8中。 我的网站是www.burodsin.com第一个带有徽标的主页。
在css背景中,我添加了
.bclass:link {
background-image: url('images/buroimagenew.jpg');
position: absolute;
width: 40px;
height: 97px;
display: block;
z-index:12;
}
答案 0 :(得分:3)
您网页上的问题是您要在repeat
上定义no-repeat
属性background-image
,就像这样
background-image: url('images/buroimagenew.jpg') no-repeat;
/* ^ This is NOT a background-image accepted value */
将
等属性分开background-image: url('images/buroimagenew.jpg');
background-repeat: no-repeat;
或者写下正确的速记规则。
background: url('images/buroimagenew.jpg') no-repeat;
答案 1 :(得分:0)
以下是不同的背景属性:
background
background-image
background-repeat
background-color
background-clip
background-attachment
background-origin
background-position
如此分开:
background-image: url('urlofyourimage.jpg');
background-repeat: no-repeat;