我有一個漢堡包登錄,由另一個div覆蓋。我想要漢堡標誌堆疊在一切之上。所以我將z-index值應用於我認爲合適的地方。但它不起作用。誰能解釋爲什麼?下面是我的codepen,請看看。z-index值不適用於元素?
codepen:
http://codepen.io/tbeckett24/pen/qORBbE
HTML:
<body>
<div id="photoCover">
<nav id="menu" class="menu">
<a href="#" class="menu-trigger"><span>Menu</span></a>
</nav>
</div><!--photoCover-->
<div id="entryMenu"></div><!--entryMenu-->
</body>
CSS:
html {
background: green;
width: 100%;
height:100%;
}
body {
width: 100%;
height:100%;
position: relative;
}
#photoCover {
width:100%;
height:100%;
position: fixed;
top: 0;
left:0;
background-color: rgba(0,0,0,0.6);
}
.menu {
position: fixed;
top: 0; right: 0;
width: 100%;
background-color: rgba(0,0,0,0);
-webkit-backface-visibility: hidden;
}
.menu-trigger {
position: fixed;
top: 2%; right: 2%;
display: block;
width: 60px; height: 60px;
cursor: pointer;
background: red;
z-index:3000;
}
.menu-trigger span {
position: absolute;
top: 50%; left: 0;
display: block;
width: 100%; height: 6px;
margin-top: -2px;
background-color: #fff;
font-size: 0px;
-webkit-touch-callout: none;
user-select: none;
-webkit-transition: background-color 0.3s;
transition: background-color 0.3s;
z-index: 2000;
}
.menu-trigger span:before,
.menu-trigger span:after {
position: absolute;
left: 0;
width: 100%; height: 100%;
background: #fff;
content: '';
}
.menu-trigger span:before {
-webkit-transform: translateY(-270%);
transform: translateY(-270%);
}
.menu-trigger span:after {
-webkit-transform: translateY(270%);
transform: translateY(270%);
}
#entryMenu {
position: fixed;
top:0;
left:0;
height:100%;
width:100%;
background-color: rgba(0,0,0,0.9);
}
請提供一個有效的例子 –
它看起來像[this](http://i.imgur.com/78ixOSx.png)對我來說,問題在哪裏?它應該怎麼看? – mnme
我想要的是一切都是一樣的,但只是漢堡標誌,只是坐在上面。這不可能嗎? –