私は使用しています
background-size: 100%;
背景画像 (body-tag 内) をブラウザー ウィンドウに合わせます。
しかし、最小サイズを設定するための CSS3 background-property はありますか?
または、次のようなdiv-「トリック」が必要ですか?
<div id="bg">
<img src="images/bg.jpg" alt="">
</div>
#bg {
position:fixed;
top:-50%;
left:-50%;
width:200%;
height:200%;
}
#bg img {
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
margin:auto;
min-width:50%;
min-height:50%;
}