/effect-siblings-on-hover.html Secret
Created
December 19, 2022 16:58
Star
You must be signed in to star a gist
Effect All Siblings on Hover With CSS
This file contains 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
<style> | |
.parent:hover > .child:not(:hover) { | |
opacity: 0.1; | |
} | |
</style> | |
<div class="parent"> | |
<div class="child">first item</div> | |
<div class="child">second item</div> | |
<div class="child">third item</div> | |
<div class="child">fourth item</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment