首页 > 代码库 > 在IE8下background-image不显示的解决方法

在IE8下background-image不显示的解决方法

刚写一个页面,在chrome,FF里调试完后,忽然想起ie来,放到Ie里其它还好了,但是有个背景图片显示不出来。

调试N遍后,只好上stackoverflow去找一下,果然找到了。

最初是这样写的:

background: url(../images/img.png)no-repeat; 

在ie8下不显示,改成如下:

background: url(../images/img.png) no-repeat; 

可以显示了。

看出差别了吗?没有错,一个空格。仅一个空格而已。

在IE8下background-image不显示的解决方法