Z-index堆叠顺序

时间:2013-04-19 19:36:11

标签: html css z-index

考虑以下jsfiddle:http://jsfiddle.net/dHaM8

HTML:

<div class="first"><img src="http://placekitten.com/g/200/300"/></div>
<div class="second"></div>
<div class="third"><p class="test"> test test test </p></div>

CSS:

.first img {position:fixed; top: 10; left: 10; z-index: 1}
.test {position:fixed; top: 10; left: 10; z-index: 10}
.first {
    background-color: #a6a6a6;
    height: 600px;
    background-attachment: fixed;
    background-image: url("http://placehold.it/1000x500");
}

.second {
    background-color: #fff;
    min-height: 500px;
    z-index:2;
    position:relative;
}

 .third {
    background-color: #ff0000;
    min-height: 500px;
    background-attachment: fixed;
    position:relative;
    z-index:3;
 }

我想做的是:

小猫应该保持固定在div“first”中,如果你看一下CSS就已经实现了。

但是,第三个div中的文字没有显示!

如果我将div设置为高于小猫的div,则文本将显示在我不想发生的第一个div中。我只希望它显示在第三个div中。

请帮助。

1 个答案:

答案 0 :(得分:0)

给出位置:相对于<p>标签。见fiddle

.test {position:relative; top: 10px; left: 10px; z-index: 10}