如果可以使用'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>
答案 0 :(得分:1)
你使这种负载比绝对定位更复杂。您只需在图片上height: auto
。
<强> LIVE DEMO > 强>
<div class="header">
<img src="http://www.dev.inside-guides.co.uk/images/new-header.jpg" />
</div>
<div class="nav">
NAV
</div>
.header {
width: 100%;
margin 0 0 10px 0;
}
.header img {
width: 100%;
height: auto;
}
.nav {
background: red;
width: 100%;
}