Skip to content

Instantly share code, notes, and snippets.

@Kcko
Last active June 5, 2025 11:11
Show Gist options
  • Save Kcko/7b2d2f65f54a9239cb9bfbf2966eaa17 to your computer and use it in GitHub Desktop.
Save Kcko/7b2d2f65f54a9239cb9bfbf2966eaa17 to your computer and use it in GitHub Desktop.
.modal {
/* Hidden state */
display: none;
opacity: 1;
}
.modal.open {
display: block;
/* Regular transition works now */
transition: opacity 300ms;
opacity: 1;
}
/* Define starting styles when modal becomes displayed */
@starting-style {
.modal.open {
opacity: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment