我创建了一个使用两个图像作为背景的网页-一个用于顶部,一个用于底部。 Chrome,Safari和Firefox显示页面没有问题,但是在IE中,底部的背景没有显示。这是我正在使用的代码:

html {
  font:100%;
  background:url(../images/test8-300.jpg) repeat-x, url(../images/Html-background-Bottom2.png) no-repeat bottom;
  background-color:#d7d7d7;
}


如果您需要进一步了解,请访问以下地址:doggiestime.co.uk。在底部,您应该可以看到一些狗。

最佳答案

尝试

background:#fff repeat-x no-repeat bottom;
background-image:url(../images/test8-300.jpg), url(../images/Html-background-Bottom2.png);

关于css - IE浏览器不显示我的底部背景图片,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14574848/

10-12 12:28
查看更多