背景图像未在 IE 中显示,并且可以在其他浏览器中正常使用。
我在 CSS 中的代码行:
background: url(../images/box.png)no-repeat;
背景图像未在 IE 中显示,并且可以在其他浏览器中正常使用。
我在 CSS 中的代码行:
background: url(../images/box.png)no-repeat;
在图像 src 和 no-repeat 之间添加一个空格。
url(../images/box.png) no-repeat
您应该查看背景的速记实现:
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;