“Comment affecter un élément deffernt dans CSS” Réponses codées

Lorsqu'il oscille l'élément différent cible

//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 affecte un autre élément

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

Comment affecter un élément deffernt dans CSS

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

Réponses similaires à “Comment affecter un élément deffernt dans CSS”

Questions similaires à “Comment affecter un élément deffernt dans CSS”

Plus de réponses similaires à “Comment affecter un élément deffernt dans CSS” dans CSS

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code