0

我有 2 个div

<div id="one"></div>
<div id="two"></div>

通常第二个超过第一个。但我希望第一个与 zorder 保持领先:

div {
    position: absolute;
    width: 100px;
    height: 100px;
}

#one {
    top: 20px;
    left: 20px;
    background: red;
    zorder: 2;
}

#two {
    top: 50px;
    left: 50px;
    background: blue;
    zorder: 1;
}

为什么这不起作用?

4

1 回答 1

0

这是 HTML,所以我猜你的意思是z-index

#one {
    z-index: 2;
}

#two {
    z-index: 1;
}
于 2013-04-21T23:15:27.843 回答