我希望将Wrapper-Top图层放在另一个图层的顶部。我设置了Z-index和position,这应该足够了。我错过了什么吗?这是website:提前谢谢。
编辑:这是我使用的代码:
<body>
<div class="Wrapper-Top">
</div>
<div class="Wrapper-Middle">
hjklhjkhkjlhjkl
</div>
</body>
.Wrapper-Top{ min-width: 980px; width: 100%; height: 179px; top: 0px; left: 0px; background:url(img/header-bg.png) repeat-x 50% 0%; z-index: 20; }
.Wrapper-Middle{ min-width: 980px; width: 100%; height: 300px; margin: 0 auto; background: #eee; top: 160px; left: 0px; position: absolute; z-index: 10; text-align: center; }
答案 0 :(得分:5)
答案 1 :(得分:0)
我认为这就是你想要的......
<body>
<div class="Wrapper-Middle">
hjklhjkhkjlhjkl
</div>
<div class="Wrapper-Top">
</div>
.Wrapper-Top{ min-width: 980px;
width: 100%;
height: 179px;
top: 0px;
left: 0px;
background: url(img/header-bg.png) repeat-x 50% 0%;
z-index: 20;
position: absolute;
}
.Wrapper-Middle{min-width: 980px;
width: 100%;
height: 300px;
margin: 0 auto;
background: #eee;
top: 0px;
left: 0px;
z-index: 10;
text-align: center;
}
答案 2 :(得分:0)
使用绝对两者的位置,并给出最高的z指数值你想要的另一个。像这样
.Wrapper-Top{top: 0px; left: 0px; position:absolute; z-index: 2; }
.Wrapper-Middle{top: 160px; left: 0px; position: absolute; z-index: 1;}