新しい CSS3 の背景コマンドのいくつかに少し行き詰まっています。
画面/ブラウザ サイズに動的にスケーリングする背景画像を持つ を作成しようとしています。
これは私が実現したい効果の例です。これは < body > タグで実行されています http://www.css3.info/demos/background-size-contain.html
私が抱えている問題は、 < body > タグには高さや幅を定義する必要がないことですが、 < div > には必要です。ここに私のコードがあります:
<!DOCTYPE html>
<html>
<head>
<title>background-size: contain;</title>
<style type="text/css">
#please_expand {
background-image: url(images/betweengrassandsky.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-color: #EEE;
background-size: contain;
}
</style>
<body>
<div id="please_expand">
<h1>Example J - background-size: contain;</h1>
</div>
</body>
</html>