コンテナのサイズよりも大きい背景画像を含む空の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%;
}