我有一张背景图片。我正在拉伸它以使其适合整个页面。但它可以在 IE 以外的浏览器中运行。但是如果我使用背景大小,它可以在 IE9 中运行。但我希望它在 IE8 中工作。这个怎么做?提前致谢。
在其他浏览器和 IE9 中:
在 IE8 中:
您可以在页面底部找到差异。这是我的代码:
body, html{
height:100%;
padding:0;
margin:0;
}
body.BodyBackground {
margin: 0px;
background: url(../images/common/header/Background_color.png);
background-repeat:repeat-x;
background-attachment:fixed;
background-position:top center;
height: 100%;
width: 100%;
border: 0;
background-size:contain;
display:inline-block;
background-color: transparent;
}
div.content{
height:100%;
width:97%;
background-color: rgb(255, 255, 255);
margin: 0px 25px 25px 25px;
height:470px;
background-position:center;
background-repeat:no-repeat;
background-attachment:fixed;
}