3

例如,采用以下 HTML 和 CSS:

<div class="fixed"></div>
<div class="wrapper">
  <div class="child"></div>
</div>

.fixed {
  background: blue;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.wrapper, .child {
  position: absolute;  
  height: 20px;
  width: 20px;
  padding: 20px;
}

.wrapper {
  z-index: 1;
  background: red;
}

.child {
  position: absolute;
  z-index: 3;
  background: yellow;
}

预期的行为将是.child显示在上面,但在.fixedhttp://jsfiddle.net/STLMR/.wrapper显示是不可见的(在 Chrome + Firefox 中测试)。这有什么技巧,还是我缺少一些 CSS 怪癖? .fixed

4

2 回答 2

4

在 CSS 中,z-index不是绝对的,而是相对于父容器的。对于“绝对”,我不是指position: absolute属性,我之所以这么说是因为它可能会造成混淆。

相关:https ://stackoverflow.com/a/7490187/671092

于 2013-01-07T15:24:17.027 回答
2

您必须将 移动.child到 z-index 高于.fixed.

于 2013-01-07T15:25:42.677 回答