说我有以下内容:
<div id="fader"></div>
<div id="wrapper">
<div class="content">Blah Blah</div>
<div class="content">Blah Blah</div>
<div class="content">
<div id="form">form goes here</div>
</div>
<div id="form2">Form goes here</div>
现在 #form 实际上在单击按钮之前是不可见的。那时,我想让推子把整个页面变黑,然后#form 就会出现。
我通过使用position: absolute
正确的z-index
. 现在,#wrapper 设置为低于 #fader 的 z-index 的 z-index。我希望#form z-index 高于#fader,但仍位于#wrapper 内!有没有办法做到这一点?
谢谢