Skip to content

Instantly share code, notes, and snippets.

@graste
Created August 27, 2026 05:17
Show Gist options
  • Select an option

  • Save graste/ae3f39d78e5c59bbef09930acf10d2b3 to your computer and use it in GitHub Desktop.

Select an option

Save graste/ae3f39d78e5c59bbef09930acf10d2b3 to your computer and use it in GitHub Desktop.
img:hover { /* the main element */
scale: 1.5;
}
img:hover + *, /* the 1st next element */
img:has(+ *:hover) { /* the 1st previous element */
scale: 1.2;
}
img:hover + * + *, /* the 2nd next element */
img:has(+ * + *:hover) { /* the 2nd previous element */
scale: 1.1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment