-
-
Save nocodesupplyco/604e6915e7c93548e37db5b87db2d53c to your computer and use it in GitHub Desktop.
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