“Как повлиять на элемент Deffernt в CSS” Ответ

Когда мишени наведенного целевого элемента

//cube is directly inside the container:
#container:hover > #cube { background-color: yellow; }

//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; }

//If the cube is a sibling of the container:
#container:hover ~ #cube { background-color: yellow; }
Helpless Hippopotamus

CSS Hover влияет на другой предмет

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

Как повлиять на элемент Deffernt в CSS

<div id="container">
  <div id="cube">
  </div>
</div>
Samuel, who uploaded this answer

Ответы похожие на “Как повлиять на элемент Deffernt в CSS”

Вопросы похожие на “Как повлиять на элемент Deffernt в CSS”

Больше похожих ответов на “Как повлиять на элемент Deffernt в CSS” по CSS

Смотреть популярные ответы по языку

Смотреть другие языки программирования