Skip to content

Instantly share code, notes, and snippets.

@enlineaweb
Created February 12, 2023 05:30
Show Gist options
  • Save enlineaweb/fbb35fa9ff18d7f83e10b86743802bf0 to your computer and use it in GitHub Desktop.
Save enlineaweb/fbb35fa9ff18d7f83e10b86743802bf0 to your computer and use it in GitHub Desktop.
Basic <dialog>
<dialog id="dialog">
<form method="dialog">
<p>Hi, I'm a dialog.</p>
<button>OK</button>
</form>
</dialog>
<button onclick="dialog.showModal()">Open Dialog</button>
html {
block-size: 100%;
color-scheme: dark light;
}
body {
min-block-size: 100%;
font-family: system-ui, sans-serif;
display: grid;
place-content: center;
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment