Created
May 23, 2021 20:07
-
-
Save frankyonnetti/37c496a14b1e9855f53b15e23a7105fa to your computer and use it in GitHub Desktop.
CSS - click through over laping elements #css #pointer-events
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* prevent children elements from getting in the way of click events using CSS. */ | |
a > * { | |
pointer-events: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment