“Como afetar um elemento de Deffernt no CSS” Respostas de código

Quando o mouse alvo do elemento diferente

//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 Passeie afeta outro item

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

Como afetar um elemento de Deffernt no CSS

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

Respostas semelhantes a “Como afetar um elemento de Deffernt no CSS”

Perguntas semelhantes a “Como afetar um elemento de Deffernt no CSS”

Mais respostas relacionadas para “Como afetar um elemento de Deffernt no CSS” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código