背景图片不出现在IE中但出现在Firefox中

时间:2012-03-18 09:00:58

标签: css

我的背景图片出现在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;
 }

2 个答案:

答案 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;