“CSS HOVER Zmień kolejny 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

Na zawisie wyświetlanie kolejnego div css

.showme {
  display: none;
}

.showhim:hover .showme {
  display: block;
}


<div class="showhim">HOVER ME
  <div class="showme">hai</div>
</div>
Lokesh003Coding

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

Czy możesz kontrolować kolejny div na zawisie CSS

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

<div id="a">Div A</div>
<div id="b">Div B</div>
Vast Vulture

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ń kolejny element”

Pytania podobne do “CSS HOVER Zmień kolejny element”

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

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

Przeglądaj inne języki kodu