E048 - Herst/bootlint-ng GitHub Wiki

Note: Below is the original page from the Bootlint documentation, some of the info here might not apply to Bootlint-NG!


E048

.modal must have a role="dialog" attribute.

For accessibility reasons, all modals (i.e. elements with the .modal class) must have a role attribute with a value of dialog.

Wrong:

<div class="modal" tabindex="-1">
  ...
</div>

Right:

<div class="modal" tabindex="-1" role="dialog">
  ...
</div>
⚠️ **GitHub.com Fallback** ⚠️