1

谁能帮我把红色的 div 翻到蓝色的段落上?

http://jsfiddle.net/B3rQR/1/

我尝试使用 z-index 进行操作,但无法使其工作:

div {
    z-index: 1;
}

p {
    background-color: blue;
    z-index: 0;
}

对不起,如果这是一个菜鸟问题。

提前致谢!

4

3 回答 3

8

当然,只需添加position:relative;到您的 div 的规则。z-index仅适用于定位元素。

jsFiddle 示例

于 2013-06-12T17:24:46.650 回答
5

您可以定位<ul><div>- 例如

ul {
background-color: yellow;
width: 100%;
height: 50px;
z-index: 1; /* z-index doesn't work on statically positioned elements */
position: relative;
}

http://jsfiddle.net/B3rQR/2/

于 2013-06-12T17:24:32.823 回答
0

加入position: relative;div

于 2013-06-12T17:28:28.877 回答