“wie man ein Deffernt -Element in CSS beeinflusst” Code-Antworten

Wenn sich ein unterschiedliches Element zielt,

//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 -Hover betrifft einen anderen Gegenstand

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

wie man ein Deffernt -Element in CSS beeinflusst

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

Ähnliche Antworten wie “wie man ein Deffernt -Element in CSS beeinflusst”

Fragen ähnlich wie “wie man ein Deffernt -Element in CSS beeinflusst”

Weitere verwandte Antworten zu “wie man ein Deffernt -Element in CSS beeinflusst” auf CSS

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen