IE 8中未显示背景图像

时间:2011-12-09 09:06:13

标签: html css internet-explorer css3

内容div背景未在IE8中显示。

这是css

#content{
    margin: 0 auto;
    width: 950px;
    height: auto;       
    padding-top: 50px;
    padding-bottom: 15px;       
    font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
    text-align: justify;
    background-color: #FFF;
    background-image: url('images/content-bg.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
}

所有其他浏览器显示图像。 在IE9的开发人员模式下使用浏览器模式测试IE8并将文档模式测试到IE8时,图像可见,但IE8本身不可见。

2 个答案:

答案 0 :(得分:3)

更改背景图片网址。它会起作用。

background-image: url("/wordpress/wp-content/themes/allister/images/content-bg.jpg");

答案 1 :(得分:0)

写得像

background: url('images/content-bg.jpg') no-repeat 0 bottom #FFF;
相关问题