💄 Styling siblings on hover
👋 FYI, this note is over 6 months old. Some of the content may be out of date.
Use the :not CSS selector to stylize siblings on hover.
Normally, you would need JavaScript to stylize all the siblings of an element you’re interacting with. But wait! There’s a cool method based 100% on CSS.
The idea, in short, is to target the :hover of the parent, then target all the children except the one you’re hovering over.
.parent:hover .child:not(:hover) {
/* this style affects all the children except the one you're hovering over */
}
See the Pen CSS Nugget: Styling siblings on hover by CodyHouse (@codyhouse) on CodePen.
← Back home