我有一个空 div,其中包含大于容器大小的背景图像。background-image
我用值 (100% 100%)修复了这个属性。这很好,直到您在 IE8 和 IE7 中打开示例。任何解决方案,甚至是 javascript 脚本或 jquery 插件?
即:http: //jsbin.com/imirer/1/edit
即:http: //jsfiddle.net/bPTzE/
HTML:
<div class="container">
<div class="background"></div>
</div>
CSS:
.container {
/* an example width for responsive perpose */
width: 500px;
}
.background {
height: 27px;
background: url("http://s18.postimage.org/jhbol7zu1/image.png") no-repeat scroll 100% 100% transparent;
/* not working in IE8 and IE7 */
background-size: 100% 100%;
}