为什么背景图像在IE9中不起作用?

时间:2015-08-13 15:36:02

标签: html css internet-explorer

这是网站:

http://loveloverun.com/test/love_run/

我检查过它在chrome和firefox中正常工作。问题是在IE9中,背景图像仅适用于身体层面。

这是我的css:

body {
    font-family : Open Sans;
    min-height: 0px;
    background: url("../img/front/bg.png") repeat;
    height:auto;
}

另一个例如容器

.container {
    width: 1022px !important; /*1302px*/
    background-color:#ffffff;
    background-clip:content-box;
}

还有一个例子(页脚):

#enquiry {
    color:#ffffff;
    background: url("../img/front/black.png") repeat; 
}

我检查了文档类型,并且没有遗漏任何标记。

还有一些其他地方与chrome / firefox不同,所以我想知道:

1)是否有任何插件可以增强兼容性?我尝试过现代化器,但它似乎没有效果。

2)如何解决IE9的背景问题?

更新

body {
    font-family : Open Sans;
    min-height: 0px;
    background-image: url("../img/front/bg.png");
    background-repeat: repeat;
    height:auto;
}

结果仍然相同

更新2:

ie9

中的屏幕上限

enter image description here

1 个答案:

答案 0 :(得分:1)

使用

background-image: url(/image.whatever);

而不是

background: url (); code