背景图片未在IE中显示,并且可以与其他浏览器一起使用。
我在CSS中的代码行:
background: url(../images/box.png)no-repeat;
答案 0 :(得分:1)
在图像src和不重复之间添加空格。
url(../images/box.png) no-repeat
答案 1 :(得分:0)
您应该查看背景shorthand implementation:
background: (color) url(../images/box.png) no-repeat (position-x) (position-y);
^^^^^
there needs to be
a space here too
如果您不打算以背景的简写形式指定所有内容,我建议转到个人声明,即:
background-image: url(../images/box.png);
background-repeat: no-repeat;