1

我正在尝试确定是否可以使用“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>
4

1 回答 1

1

您已经使此负载比绝对定位所需的负载更复杂。您需要的只是height: auto图像。

现场演示 >

<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%;
}
于 2012-10-17T12:14:10.957 回答