4

我正在使用以下 html 标记和 css 代码来设计我的登录页面。

HTML

<!DOCTYPE html>

<html>
<head runat="server">
    <title></title>
    <link href="Styles/Site.css" rel="stylesheet" type="text/css" />
</head>
<body style="background:transparent;">
<div id="divContainer"></div>
    <form id="form1" runat="server">
    <div id="topDiv"></div>

    <div id="divMain">
    <aside><div id="logo">
    <img id="imgLogo" src="Images/minerva.jpg" />
    </div></aside> 
    <aside>
        <div id="divContact"></div>
    </aside>
    </div>
    <footer>
    </footer>
    </form>
</body>
</html>

CSS

#topDiv {
    box-shadow: 0px 10px 20px #888888;
    background-color: #113871;
    width: 100%;
    height: 40px;
}
#logo { }
#imgLogo {
    width: 400px;
    height: 200px;
    margin-top: 20px;
    float: left;
}
#divContact {
    width: 300px;
    height: 400px;
    background-color: White;
    opacity: 0.5em;
    float: right;
    z-index: 9999;
    margin-right: 50px;
    margin-top: 149px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 0 0 .5em .25em Gray;
}
footer {
    width: 100%;
    height: 150px;
    background-color: #113871;
    display: block;
    float: left;
    margin-top: -100px;
    z-index: -1;
}

#divContact为页脚标签提供了 9999 和 -1 的 z 索引值。我的问题是我没有得到想要的东西,那就是把 divContact 放在前面。任何人都可以看看。

4

3 回答 3

14

z-index仅适用于定位元素:

/* This does not work */
.foo {
    z-index: 10;
}

/* This works */
.bar {
    position: relative;
    z-index:  10;
}

来源:http ://www.w3.org/TR/CSS2/visuren.html#z-index

于 2012-05-29T22:07:37.187 回答
11

z-index 仅适用于位置属性已明确设置为绝对、固定或相对的元素。

于 2012-05-29T22:07:26.717 回答
4

我怎么知道,z-index 仅适用于具有位置 css 属性的元素。所以我尝试在浏览器检查器中设置position:relative;为 divContact ,现在它位于第一平面。

于 2012-05-29T22:10:55.767 回答