.parent:hover .child1
.Yes, it's possible to trigger different hover effects on each child element when hovering over a parent element, using standard CSS selectors or Webflow's interactions panel.
.parent:hover .child1 { transform: scale(1.2); }
.parent:hover .child2 { opacity: 0.5; }
However, this needs to be done in the Page Settings > Custom Code section. Webflow Designer doesn’t support parent-hovering by default for styling.
.child1
, .child2
) and assign different animations to each.This method gives full visual control without needing code and is the best approach within Webflow Designer.
You can achieve different hover effects on child elements when hovering over a parent in Webflow by using either custom CSS (outside Designer) or, preferably, by setting up a mouse hover interaction on the parent and applying unique animations to each child.