“CSS HOVER Zmień inny element” Kod odpowiedzi

Jak zmienić kolejny element na zawisie

// 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 Elover wpływa na inny przedmiot

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

CSS HOVER Zmień kolejny element

#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 Zmień inny element

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

CSS HOVER Zmień kolejny element

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

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

Odpowiedzi podobne do “CSS HOVER Zmień inny element”

Pytania podobne do “CSS HOVER Zmień inny element”

Więcej pokrewnych odpowiedzi na “CSS HOVER Zmień inny element” w CSS

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu