Created
June 28, 2025 15:56
-
-
Save TeamDijon/829742986a5166c17ef76affbaf65d27 to your computer and use it in GitHub Desktop.
<details> animation support
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
@media (prefers-reduced-motion: no-preference) { | |
details { | |
transition: 0.3s ease-in-out; | |
@supports (interpolate-size: allow-keywords) { | |
interpolate-size: allow-keywords; | |
&::details-content { | |
block-size: 0; | |
opacity: 0; | |
transition: 0.3s ease-in-out allow-discrete; | |
overflow-y: hidden; | |
} | |
&[open]::details-content { | |
block-size: auto; | |
opacity: 1; | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment