本文介绍了当div被悬停时,如何影响其他元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我认为这是一个非常基本的问题,但我不知道如何做。

I think this is a very basic question but I'm not sure how it can be done.

我想做的是当某个 div 被徘徊,它会影响另一个 div 的属性。

What I want to do is when a certain div is hovered, it'd affect the properties of another div.

例如,在中,当您将鼠标悬停在 #cube 它改变了 background-color ,但我想要的是,当我悬停在 #container code> #cube 受到影响。

For example, in this simple example, when you hover over #cube it changes the background-color but what I want is that when I hover over #container, #cubeis affected.

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>

推荐答案

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

If the cube is directly inside the container:

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

如果多维数据集在容器关闭标记之后
$ b

If cube is next to (after containers closing tag) the container:

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

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

If the cube is somewhere inside the container:

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

这篇关于当div被悬停时,如何影响其他元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-14 15:31