“Jak wpłynąć na element defient w CSS” Kod odpowiedzi

Kiedy docelowy element najemny

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

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

Jak wpłynąć na element defient w CSS

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

Odpowiedzi podobne do “Jak wpłynąć na element defient w CSS”

Pytania podobne do “Jak wpłynąć na element defient w CSS”

Więcej pokrewnych odpowiedzi na “Jak wpłynąć na element defient w CSS” w CSS

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

Przeglądaj inne języki kodu