1

这最好用图片来描述!带有 asldskd 的盒子,我想成为红色区域所在的位置。我想在黑色区域放置一个徽标,然后将单独的内容放入绿色区域。我基本上想要黑色和绿色的扩展,但我希望内容位于 900px 容器内。

这就是我现在所拥有的。我尝试使用 z-index 来做到这一点。有没有办法强制将黑绿色条放在 900px 容器之外,还是我需要将容器保持在它下面?

<div id="header"> laksjdf</div>
<div id="subheader"> alskdjf</div>

<div id="container">
asdf
</div>

这是CSS:

#header {
width:100%;
height:70px;
background-color:black;
position:relative;
z-index:0;
 }

#subheader {
width:100%;
height:25px;
background-color:green;
position:relative;
z-index:1;
 } 

#container {
width:900px;
margin:0 auto;
border:1px solid black;
position:relative;
z-index:1;
 } 

在此处输入图像描述

4

1 回答 1

2

给你,我为你做了一个密码笔,告诉我你想要什么

http://codepen.io/anon/pen/yHzxd

于 2013-04-13T03:05:54.133 回答