我为div添加了背景图像的CSS,在FF,CH上显示图像......但是,它并没有在IE 8上显示
css文件
#headerrotetor{
width: 100%;
max-width: 1600px;
max-height: 660px;
background-image: url(images/hm_bg.jpg);
background-repeat: no-repeat;
margin: 0 auto;
background-size:contain;
}
我维护了IE文件的CSS
#headerrotetor{
height: 660px;
width: 1600px;
}
背景图片大小340Kb,有人可以帮帮我,谢谢
答案 0 :(得分:0)
你使用了正确的路径吗?
尝试将背景应用于body标签。下面的代码支持IE 4.0以上。
body {
background-image: url('paper.gif');
background-repeat: no-repeat;
background-position: right top;
}
注意:IE8及更早版本不支持在一个元素上使用多个背景图像。