Skip to content

Instantly share code, notes, and snippets.

@TeamDijon
Created June 28, 2025 15:56
Show Gist options
  • Save TeamDijon/829742986a5166c17ef76affbaf65d27 to your computer and use it in GitHub Desktop.
Save TeamDijon/829742986a5166c17ef76affbaf65d27 to your computer and use it in GitHub Desktop.
<details> animation support
@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