悬停一个元素时如何影响其他元素

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

例如,在这个JSFiddle演示中,当您将鼠标悬停在#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; }

以上是 悬停一个元素时如何影响其他元素 的全部内容, 来源链接: utcz.com/qa/400098.html

回到顶部