aria-modal indicates that the element is a modal and traps focus.

When to use

  • for modals or dialogs that need to be focused

Example

<div role="dialog" aria-modal="true">  
  <p>Confirm deletion?</p>  
  <button>Yes</button>  
  <button>No</button>  
</div>