Course Content
Bootstrap 5 Alerts
0/1
Progress Bars
0/1
Spinners
0/1
Pagination
0/1
List Groups
0/1
Bootstrap 5 Scrollspy
0/1
Bootstrap
About Lesson

Modal Sizes & Scrollable Modals

  • .modal-lg → Large modal
  • .modal-sm → Small modal
  • .modal-dialog-scrollable → Enables scrolling

Example: Large & Small Modals

HTML
<!-- Large Modal -->
<button type="button" class="btn btn-success" data-bs-toggle="modal" data-bs-target="#largeModal">Large Modal</button>

<div class="modal fade" id="largeModal">
  <div class="modal-dialog modal-lg">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title">Large Modal</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal"></button>
      </div>
      <div class="modal-body">
        This is a large modal.
      </div>
    </div>
  </div>
</div>

<!-- Small Modal -->
<button type="button" class="btn btn-danger" data-bs-toggle="modal" data-bs-target="#smallModal">Small Modal</button>

<div class="modal fade" id="smallModal">
  <div class="modal-dialog modal-sm">
    <div class="modal-content">
      <div class="modal-header">
        <h5 class="modal-title">Small Modal</h5>
        <button type="button" class="btn-close" data-bs-dismiss="modal"></button>
      </div>
      <div class="modal-body">
        This is a small modal.
      </div>
    </div>
  </div>
</div>

Output:

Explanation:

  • .modal-lg makes the modal larger.
  • .modal-sm makes the modal smaller.