“Cómo cambiar otro elemento en el flotador” Código de respuesta

Cómo cambiar otro elemento en el flotador

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

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

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

CSS Hover cambia otro elemento

#a:hover ~ #b {
    background: #ccc
}

<div id="a">Div A</div>
<div>random other elements</div>
<div>random other elements</div>
<div>random other elements</div>
<div id="b">Div B</div>
Modern Mouse

CSS Hover cambia otro elemento

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

CSS Hover cambia otro elemento

#a:hover + #b {
    background: #ccc
}

<div id="a">Div A</div>
<div id="b">Div B</div>
Modern Mouse

Respuestas similares a “Cómo cambiar otro elemento en el flotador”

Preguntas similares a “Cómo cambiar otro elemento en el flotador”

Más respuestas relacionadas con “Cómo cambiar otro elemento en el flotador” en CSS

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código