悬停效果不适用于 z-index 较低的元素

hover effect not working on element with lower z-index

我对 z-index 有疑问。我在这个 jsfiddle 中模拟了我的问题。我在容器中有两个兄弟姐妹 div。其中之一用作容器的背景,并对其元素具有悬停效果,因此当您将鼠标悬停在其元素上时,元素的颜色会发生变化。将它放在第二个 div 后面我使用了负 z-index ,但是悬停效果对它不起作用。这个问题有什么解决办法吗?我看到了一些关于这个主题的问题,但没有任何有效的答案...

提前致谢。

<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
        text-decoration: none;
        font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
      }

      .container {
        width: 1000px;
        height: 600px;
        position: relative;
      }

      .div1 {
        position: absolute;
        z-index: -10;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-color: lightgreen;
      }

      .div2 {
        width: 200px;
        height: 200px;
        background-color: rgb(245, 189, 116);
        margin: 0 auto;
      }

      .div1 p:hover {
        color: red;
      }

      .div2 p:hover {
        color: red;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="div1"><p>div 1 doesn't work</p></div>
      <div class="div2"><p>div 2 works</p></div>
  </div>
  </body>
</html>

根据您的代码,您将鼠标悬停在容器 div 上,而不是 div1.

Z-index 是建筑物的立面图,而您是从鸟瞰图中看到的。

要解决这个问题,您应该将 div1/div2 设置为正 z-index,并更改 div2 相对于父 div.

的位置

获取更多关于div定位的信息:

https://tomelliott.com/html-css/css-position-child-div-parent

编辑:这是一个模拟您想要的悬停效果的简单示例。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
        text-decoration: none;
        font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
      }

      .grandparent {
        width: 250px;
        height: 250px;
        background-color: lightgreen;
        position: relative;
      }

      .parent {
        width: 150px;
        height: 150px;
        /*position:absolute;*/
        bottom: 0px;
      }
      .child {
        width: 70px;
        height: 70px;
        background-color: rgb(245, 189, 116);
        position: absolute;
        right: 0px;
        top: 0px;
      }
      .parent p:hover {
        color: red;
      }

      .child p:hover {
        color: red;
      }
    </style>
  </head>
  <body>
    <div class="grandparent">
      <div class="parent">
        <p>div 1 does work now</p>
        <div class="child"><p>div 2 works</p></div>
      </div>
    </div>
  </body>
</html>

查看我对您的 CSS 所做的编辑。如果您将 div1 设置为 z-index: 0; 背景石灰绿作为元素的默认图层并使用 z-index: 1; 作为 div2 这样它会更好,所以它位于默认一个。见下文。

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  }
  
.container {
  width: 1000px;
  height: 600px;
  position: relative;
}

.div1 {
  position: absolute;
  z-index: 0;
  top:0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: lightgreen;
}


.div2 {
  position: relative;
  width: 200px;
  height: 200px;
  background-color: rgb(245, 189, 116);
  margin: 0 auto;
  z-index: 1;
}


.div1 > p:hover{
  color: red;
}


.div2 > p:hover{
  color: red;
}
<div class="container">
    <div class="div1"><p>div 1 works now</p></div>
    <div class="div2"><p>div 2 works</p></div>
</div>