ヘッダーに「img」を使用して流動的な背景画像を使用できるかどうかを調べようとしていますが、メニューとページのコンテンツを流動的なサイズ変更でインラインに保ちます。
CSS は次のとおりです。
img#header-wrapper {
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index:10;
}
#content-wrapper {padding-top:266px;float:left;overflow: hidden;border-bottom: 0;position: relative;background-color:white;height: 100%;}
html:
<div id="header-wrapper" class="clearfix">
<img id="header-wrapper" src="/images/new-header.jpg" alt="" />
</div>
</div>