“CSS Passe o mouse mudar outro elemento” Respostas de código

Como mudar outro elemento no passeio

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

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

CSS Passe o mouse, mude outro 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 Passe o mouse mudar outro elemento

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

CSS Passe o mouse, mude outro elemento

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

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

Respostas semelhantes a “CSS Passe o mouse mudar outro elemento”

Perguntas semelhantes a “CSS Passe o mouse mudar outro elemento”

Mais respostas relacionadas para “CSS Passe o mouse mudar outro elemento” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código