“Cómo afectar un elemento deffernt en CSS” Código de respuesta

Cuando se desplaza el elemento diferente del objetivo

//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 afecta a otro artículo

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

Cómo afectar un elemento deffernt en CSS

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

Respuestas similares a “Cómo afectar un elemento deffernt en CSS”

Preguntas similares a “Cómo afectar un elemento deffernt en CSS”

Más respuestas relacionadas con “Cómo afectar un elemento deffernt en CSS” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código