References

Collection of references for web development.

HTML dialog tag

Description

The HTML <dialog> element represents a dialog box or interactive window.

Attributes

Attribute Value Description
open boolean Specifies whether the element should be visible to the user.

Example

<dialog open>This dialog is open</dialog>
<dialog>This dialog is not open</dialog>