Box Modal

A typical "boxed" modal using the native <dialog> element.

Notes:

A few things to note when using the <dialog> element.

  • window.#id.showModal()should be used to open the <dialog>. window.#id.open() can be used, however this comes with reduced accessibility and functionality. It's good to be aware of what each of these techniques to open the <dialog> does and to factor in any additional development for loss of functionality.
  • Using the <dialog> element, means there is no 'click outside' (or the backdrop) to close the modal. However a user can still use the Esc key to close the <dialog>.
  • The <dialog> element has an autofocus feature, which focuses the first selectable element when opening the modal. If content is scrollable and the first selectable element is at the bottom of the content it will focus and auto scroll to the bottom. This won't be desirable behaviour for this context, so have a plan to manage this. A good way to do it, is to autofocus a close button at the top so that when the modal opens, it does not automatically scroll to the bottom.
  • Close the <dialog> element by submitting a form within the dialog (for pages that are not surrounded by a master form element), with <button formmethod="dialog">Cancel</button>. Use onclick="window.#id.close()" to close the element when not using a form inside the <dialog>.
  • Ensure that developers know what happens when a required input is used and how it affects closing the <dialog> element.
  • Whilst the <dialog> renders all other page elements inert, it does not stop page scrolling.

Dialog Element

Using the HTML <dialog> element for modals.

Title

I'm a dialog.

Box Sizes

A typical "boxed" modal, sizes can be adjusted with class modifiers.

Title

I'm a default sized dialog box.

Body Elements

Layout options for the box modal include a header and footer useful for occasions when content within the modal is scrollable.

Modal Header

He says he's found the main computer to power the tractor beam that's holding the ship here. He'll try to make the precise location appear on the monitor. The tractor beam is coupled to the main reactor in seven locations. A power loss at one of the terminals will allow the ship to leave. I don't think you boys can help. I must go alone. Whatever you say.

Now he begs you to help him in his struggle against the Empire. I regret that I am unable to present my father's request to you in person, but my ship has fallen under attack and I'm afraid my mission to bring you to Alderaan has failed.

Managing Overflow

When space is limited i.e when on a mobile device, ensure the content is scroll-able within the modal.

Title

Lorem ipsum dolor sit, amet consectetur adipisicing elit. Consequuntur, ullam. Natus assumenda sint dicta! Quos eveniet voluptatem vel, consectetur hic ullam error accusantium, quod necessitatibus fugit ducimus quae nemo quisquam!

Lorem ipsum dolor sit amet consectetur adipisicing elit. Reiciendis quos harum excepturi iste, dolore adipisci aliquid soluta? Quisquam, quidem commodi? Molestias, ab. Iure, autem quae eligendi veniam saepe assumenda cupiditate?

Close

Allow the dialog element to be closed with a "X" button.

Title

He says he's found the main computer to power the tractor beam that's holding the ship here. He'll try to make the precise location appear on the monitor. The tractor beam is coupled to the main reactor in seven locations. A power loss at one of the terminals will allow the ship to leave. I don't think you boys can help. I must go alone. Whatever you say.

Now he begs you to help him in his struggle against the Empire. I regret that I am unable to present my father's request to you in person, but my ship has fallen under attack and I'm afraid my mission to bring you to Alderaan has failed.


Support:

Support for the dialog element.

Data on support for the dialog feature across the major browsers from caniuse.com