我想做的是将某个div悬停时,它将影响另一个div的属性。

例如,在this JSFiddle demo中,当您将鼠标悬停在#cube上时,它会更改background-color,但是我想要的是,当我将鼠标悬停在#container上时,#cube会受到影响。



div {
  outline: 1px solid red;
}
#container {
  width: 200px;
  height: 30px;
}
#cube {
  width: 30px;
  height: 100%;
  background-color: red;
}
#cube:hover {
  width: 30px;
  height: 100%;
  background-color: blue;
}

<div id="container">

  <div id="cube">
  </div>

</div>

最佳答案

如果多维数据集直接位于容器内部:

#container:hover > #cube { background-color: yellow; }


如果多维数据集位于容器旁边(在容器关闭标签之后):

#container:hover + #cube { background-color: yellow; }


如果多维数据集在容器内的某个位置:

#container:hover #cube { background-color: yellow; }


如果多维数据集是容器的同级:

#container:hover ~ #cube { background-color: yellow; }

10-08 15:26