Bootstrap 5 UI Tutorial

Build fast, responsive sites with Bootstrap 5

BS5 Modal

Bootstrap 5 Modal

The Modal component is a dialog box/popup window that is displayed on top of the current page.

How To Create a Modal

  • Add data-bs-toggle="modal" and data-bs-target="#myModal" to a button.
  • Create a <div> with the .modal class and an id that matches the button's target.
  • Inside, build the modal using .modal-dialog, .modal-content, .modal-header, .modal-body, and .modal-footer.

Try It Yourself

Edit the code below and click Run to see the result live.

Source Code
Result
Topics