How it works

Before getting started with Bootstrap’s modal component, be sure to read the following as our menu options have recently changed.

  • Modals are built with HTML, CSS, and JavaScript. They’re positioned over everything else in the document and remove scroll from the <body> so that modal content scrolls instead.
  • Clicking on the modal “backdrop” will automatically close the modal.
  • Bootstrap only supports one modal window at a time. Nested modals aren’t supported as we believe them to be poor user experiences.
  • Modals use position: fixed, which can sometimes be a bit particular about its rendering. Whenever possible, place your modal HTML in a top-level position to avoid potential interference from other elements. You’ll likely run into issues when nesting a .modal within another fixed element.
  • Once again, due to position: fixed, there are some caveats with using modals on mobile devices. See our browser support docs for details.
  • Due to how HTML5 defines its semantics, the autofocus HTML attribute has no effect in Bootstrap modals. To achieve the same effect, use some custom JavaScript:
  1. var myModal = document.getElementById('myModal')
  2. var myInput = document.getElementById('myInput')
  3. myModal.addEventListener('shown.bs.modal', function () {
  4. myInput.focus()
  5. })

The animation effect of this component is dependent on the prefers-reduced-motion media query. See the reduced motion section of our accessibility documentation.

Keep reading for demos and usage guidelines.

Examples

Modal components

Below is a static modal example (meaning its position and display have been overridden). Included are the modal header, modal body (required for padding), and modal footer (optional). We ask that you include modal headers with dismiss actions whenever possible, or provide another explicit dismiss action.

Modal - 图1

  1. <div class="modal" tabindex="-1">
  2. <div class="modal-dialog">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h5 class="modal-title">Modal title</h5>
  6. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  7. </div>
  8. <div class="modal-body">
  9. <p>Modal body text goes here.</p>
  10. </div>
  11. <div class="modal-footer">
  12. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
  13. <button type="button" class="btn btn-primary">Save changes</button>
  14. </div>
  15. </div>
  16. </div>
  17. </div>

Live demo

Toggle a working modal demo by clicking the button below. It will slide down and fade in from the top of the page.

Modal title

Woohoo, you’re reading this text in a modal!

Modal - 图2

  1. <!-- Button trigger modal -->
  2. <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal">
  3. Launch demo modal
  4. </button>
  5. <!-- Modal -->
  6. <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  7. <div class="modal-dialog">
  8. <div class="modal-content">
  9. <div class="modal-header">
  10. <h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
  11. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  12. </div>
  13. <div class="modal-body">
  14. ...
  15. </div>
  16. <div class="modal-footer">
  17. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
  18. <button type="button" class="btn btn-primary">Save changes</button>
  19. </div>
  20. </div>
  21. </div>
  22. </div>

Static backdrop

When backdrop is set to static, the modal will not close when clicking outside it. Click the button below to try it.

Modal title

I will not close if you click outside me. Don’t even try to press escape key.

Modal - 图3

  1. <!-- Button trigger modal -->
  2. <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdrop">
  3. Launch static backdrop modal
  4. </button>
  5. <!-- Modal -->
  6. <div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
  7. <div class="modal-dialog">
  8. <div class="modal-content">
  9. <div class="modal-header">
  10. <h5 class="modal-title" id="staticBackdropLabel">Modal title</h5>
  11. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  12. </div>
  13. <div class="modal-body">
  14. ...
  15. </div>
  16. <div class="modal-footer">
  17. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
  18. <button type="button" class="btn btn-primary">Understood</button>
  19. </div>
  20. </div>
  21. </div>
  22. </div>

Scrolling long content

When modals become too long for the user’s viewport or device, they scroll independent of the page itself. Try the demo below to see what we mean.

Modal title

This is some placeholder content to show the scrolling behavior for modals. Instead of repeating the text the modal, we use an inline style set a minimum height, thereby extending the length of the overall modal and demonstrating the overflow scrolling. When content becomes longer than the height of the viewport, scrolling will move the modal as needed.

Modal - 图4

You can also create a scrollable modal that allows scroll the modal body by adding .modal-dialog-scrollable to .modal-dialog.

Modal title

This is some placeholder content to show the scrolling behavior for modals. We use repeated line breaks to demonstrate how content can exceed minimum inner height, thereby showing inner scrolling. When content becomes longer than the prefedined max-height of modal, content will be cropped and scrollable within the modal.

This content should appear at the bottom after you scroll.

Modal - 图5

  1. <!-- Scrollable modal -->
  2. <div class="modal-dialog modal-dialog-scrollable">
  3. ...
  4. </div>

Vertically centered

Add .modal-dialog-centered to .modal-dialog to vertically center the modal.

Modal title

This is a vertically centered modal.

Modal title

This is some placeholder content to show a vertically centered modal. We’ve added some extra copy here to show how vertically centering the modal works when combined with scrollable modals. We also use some repeated line breaks to quickly extend the height of the content, thereby triggering the scrolling. When content becomes longer than the prefedined max-height of modal, content will be cropped and scrollable within the modal.

Just like that.

Modal - 图6

  1. <!-- Vertically centered modal -->
  2. <div class="modal-dialog modal-dialog-centered">
  3. ...
  4. </div>
  5. <!-- Vertically centered scrollable modal -->
  6. <div class="modal-dialog modal-dialog-centered modal-dialog-scrollable">
  7. ...
  8. </div>

Tooltips and popovers

Tooltips and popovers can be placed within modals as needed. When modals are closed, any tooltips and popovers within are also automatically dismissed.

Modal title
Popover in a modal

This button triggers a popover on click.


Tooltips in a modal

This link and that link have tooltips on hover.

Modal - 图7

  1. <div class="modal-body">
  2. <h5>Popover in a modal</h5>
  3. <p>This <a href="#" role="button" class="btn btn-secondary popover-test" title="Popover title" data-bs-content="Popover body content is set in this attribute.">button</a> triggers a popover on click.</p>
  4. <hr>
  5. <h5>Tooltips in a modal</h5>
  6. <p><a href="#" class="tooltip-test" title="Tooltip">This link</a> and <a href="#" class="tooltip-test" title="Tooltip">that link</a> have tooltips on hover.</p>
  7. </div>

Using the grid

Utilize the Bootstrap grid system within a modal by nesting .container-fluid within the .modal-body. Then, use the normal grid system classes as you would anywhere else.

Grids in modals

.col-md-4

.col-md-4 .ms-auto

.col-md-3 .ms-auto

.col-md-2 .ms-auto

.col-md-6 .ms-auto

Level 1: .col-sm-9

Level 2: .col-8 .col-sm-6

Level 2: .col-4 .col-sm-6

Modal - 图8

  1. <div class="modal-body">
  2. <div class="container-fluid">
  3. <div class="row">
  4. <div class="col-md-4">.col-md-4</div>
  5. <div class="col-md-4 ms-auto">.col-md-4 .ms-auto</div>
  6. </div>
  7. <div class="row">
  8. <div class="col-md-3 ms-auto">.col-md-3 .ms-auto</div>
  9. <div class="col-md-2 ms-auto">.col-md-2 .ms-auto</div>
  10. </div>
  11. <div class="row">
  12. <div class="col-md-6 ms-auto">.col-md-6 .ms-auto</div>
  13. </div>
  14. <div class="row">
  15. <div class="col-sm-9">
  16. Level 1: .col-sm-9
  17. <div class="row">
  18. <div class="col-8 col-sm-6">
  19. Level 2: .col-8 .col-sm-6
  20. </div>
  21. <div class="col-4 col-sm-6">
  22. Level 2: .col-4 .col-sm-6
  23. </div>
  24. </div>
  25. </div>
  26. </div>
  27. </div>
  28. </div>

Varying modal content

Have a bunch of buttons that all trigger the same modal with slightly different contents? Use event.relatedTarget and HTML data-bs-* attributes to vary the contents of the modal depending on which button was clicked.

Below is a live demo followed by example HTML and JavaScript. For more information, read the modal events docs for details on relatedTarget.

Modal - 图9

  1. <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@mdo">Open modal for @mdo</button>
  2. <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@fat">Open modal for @fat</button>
  3. <button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModal" data-bs-whatever="@getbootstrap">Open modal for @getbootstrap</button>
  4. <div class="modal fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  5. <div class="modal-dialog">
  6. <div class="modal-content">
  7. <div class="modal-header">
  8. <h5 class="modal-title" id="exampleModalLabel">New message</h5>
  9. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  10. </div>
  11. <div class="modal-body">
  12. <form>
  13. <div class="mb-3">
  14. <label for="recipient-name" class="col-form-label">Recipient:</label>
  15. <input type="text" class="form-control" id="recipient-name">
  16. </div>
  17. <div class="mb-3">
  18. <label for="message-text" class="col-form-label">Message:</label>
  19. <textarea class="form-control" id="message-text"></textarea>
  20. </div>
  21. </form>
  22. </div>
  23. <div class="modal-footer">
  24. <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
  25. <button type="button" class="btn btn-primary">Send message</button>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  1. var exampleModal = document.getElementById('exampleModal')
  2. exampleModal.addEventListener('show.bs.modal', function (event) {
  3. // Button that triggered the modal
  4. var button = event.relatedTarget
  5. // Extract info from data-bs-* attributes
  6. var recipient = button.getAttribute('data-bs-whatever')
  7. // If necessary, you could initiate an AJAX request here
  8. // and then do the updating in a callback.
  9. //
  10. // Update the modal's content.
  11. var modalTitle = exampleModal.querySelector('.modal-title')
  12. var modalBodyInput = exampleModal.querySelector('.modal-body input')
  13. modalTitle.textContent = 'New message to ' + recipient
  14. modalBodyInput.value = recipient
  15. })

Toggle between modals

Toggle between multiple modals with some clever placement of the data-bs-target and data-bs-toggle attributes. For example, you could toggle a password reset modal from within an already open sign in modal. Please note multiple modals cannot be open at the same time—this method simply toggles between two separate modals.

Modal - 图10

  1. <div class="modal fade" id="exampleModalToggle" aria-hidden="true" aria-labelledby="exampleModalToggleLabel" tabindex="-1">
  2. <div class="modal-dialog modal-dialog-centered">
  3. <div class="modal-content">
  4. <div class="modal-header">
  5. <h5 class="modal-title" id="exampleModalToggleLabel">Modal 1</h5>
  6. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  7. </div>
  8. <div class="modal-body">
  9. Show a second modal and hide this one with the button below.
  10. </div>
  11. <div class="modal-footer">
  12. <button class="btn btn-primary" data-bs-target="#exampleModalToggle2" data-bs-toggle="modal" data-bs-dismiss="modal">Open second modal</button>
  13. </div>
  14. </div>
  15. </div>
  16. </div>
  17. <div class="modal fade" id="exampleModalToggle2" aria-hidden="true" aria-labelledby="exampleModalToggleLabel2" tabindex="-1">
  18. <div class="modal-dialog modal-dialog-centered">
  19. <div class="modal-content">
  20. <div class="modal-header">
  21. <h5 class="modal-title" id="exampleModalToggleLabel2">Modal 2</h5>
  22. <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
  23. </div>
  24. <div class="modal-body">
  25. Hide this modal and show the first with the button below.
  26. </div>
  27. <div class="modal-footer">
  28. <button class="btn btn-primary" data-bs-target="#exampleModalToggle" data-bs-toggle="modal" data-bs-dismiss="modal">Back to first</button>
  29. </div>
  30. </div>
  31. </div>
  32. </div>
  33. <a class="btn btn-primary" data-bs-toggle="modal" href="#exampleModalToggle" role="button">Open first modal</a>

Change animation

The $modal-fade-transform variable determines the transform state of .modal-dialog before the modal fade-in animation, the $modal-show-transform variable determines the transform of .modal-dialog at the end of the modal fade-in animation.

If you want for example a zoom-in animation, you can set $modal-fade-transform: scale(.8).

Remove animation

For modals that simply appear rather than fade in to view, remove the .fade class from your modal markup.

  1. <div class="modal" tabindex="-1" aria-labelledby="..." aria-hidden="true">
  2. ...
  3. </div>

Dynamic heights

If the height of a modal changes while it is open, you should call myModal.handleUpdate() to readjust the modal’s position in case a scrollbar appears.

Accessibility

Be sure to add aria-labelledby="...", referencing the modal title, to .modal. Additionally, you may give a description of your modal dialog with aria-describedby on .modal. Note that you don’t need to add role="dialog" since we already add it via JavaScript.

Embedding YouTube videos

Embedding YouTube videos in modals requires additional JavaScript not in Bootstrap to automatically stop playback and more. See this helpful Stack Overflow post for more information.

Optional sizes

Modals have three optional sizes, available via modifier classes to be placed on a .modal-dialog. These sizes kick in at certain breakpoints to avoid horizontal scrollbars on narrower viewports.

SizeClassModal max-width
Small.modal-sm300px
DefaultNone500px
Large.modal-lg800px
Extra large.modal-xl1140px

Our default modal without modifier class constitutes the “medium” size modal.

Modal - 图11

  1. <div class="modal-dialog modal-xl">...</div>
  2. <div class="modal-dialog modal-lg">...</div>
  3. <div class="modal-dialog modal-sm">...</div>
Extra large modal

Large modal

Small modal

Fullscreen Modal

Another override is the option to pop up a modal that covers the user viewport, available via modifier classes that are placed on a .modal-dialog.

ClassAvailability
.modal-fullscreenAlways
.modal-fullscreen-sm-downBelow 576px
.modal-fullscreen-md-downBelow 768px
.modal-fullscreen-lg-downBelow 992px
.modal-fullscreen-xl-downBelow 1200px
.modal-fullscreen-xxl-downBelow 1400px

Modal - 图12

  1. <!-- Full screen modal -->
  2. <div class="modal-dialog modal-fullscreen-sm-down">
  3. ...
  4. </div>
Full screen modal

Full screen below sm

Full screen below md

Full screen below lg

Full screen below xl

Full screen below xxl

Sass

Variables

  1. $modal-inner-padding: $spacer;
  2. $modal-footer-margin-between: .5rem;
  3. $modal-dialog-margin: .5rem;
  4. $modal-dialog-margin-y-sm-up: 1.75rem;
  5. $modal-title-line-height: $line-height-base;
  6. $modal-content-color: null;
  7. $modal-content-bg: $white;
  8. $modal-content-border-color: rgba($black, .2);
  9. $modal-content-border-width: $border-width;
  10. $modal-content-border-radius: $border-radius-lg;
  11. $modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width);
  12. $modal-content-box-shadow-xs: $box-shadow-sm;
  13. $modal-content-box-shadow-sm-up: $box-shadow;
  14. $modal-backdrop-bg: $black;
  15. $modal-backdrop-opacity: .5;
  16. $modal-header-border-color: $border-color;
  17. $modal-footer-border-color: $modal-header-border-color;
  18. $modal-header-border-width: $modal-content-border-width;
  19. $modal-footer-border-width: $modal-header-border-width;
  20. $modal-header-padding-y: $modal-inner-padding;
  21. $modal-header-padding-x: $modal-inner-padding;
  22. $modal-header-padding: $modal-header-padding-y $modal-header-padding-x; // Keep this for backwards compatibility
  23. $modal-sm: 300px;
  24. $modal-md: 500px;
  25. $modal-lg: 800px;
  26. $modal-xl: 1140px;
  27. $modal-fade-transform: translate(0, -50px);
  28. $modal-show-transform: none;
  29. $modal-transition: transform .3s ease-out;
  30. $modal-scale-transform: scale(1.02);

Loop

Responsive fullscreen modals are generated via the $breakpoints map and a loop in scss/_modal.scss.

  1. @each $breakpoint in map-keys($grid-breakpoints) {
  2. $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
  3. $postfix: if($infix != "", $infix + "-down", "");
  4. @include media-breakpoint-down($breakpoint) {
  5. .modal-fullscreen#{$postfix} {
  6. width: 100vw;
  7. max-width: none;
  8. height: 100%;
  9. margin: 0;
  10. .modal-content {
  11. height: 100%;
  12. border: 0;
  13. @include border-radius(0);
  14. }
  15. .modal-header {
  16. @include border-radius(0);
  17. }
  18. .modal-body {
  19. overflow-y: auto;
  20. }
  21. .modal-footer {
  22. @include border-radius(0);
  23. }
  24. }
  25. }
  26. }

Usage

The modal plugin toggles your hidden content on demand, via data attributes or JavaScript. It also adds .modal-open to the <body> to override default scrolling behavior and generates a .modal-backdrop to provide a click area for dismissing shown modals when clicking outside the modal.

Via data attributes

Activate a modal without writing JavaScript. Set data-bs-toggle="modal" on a controller element, like a button, along with a data-bs-target="#foo" or href="#foo" to target a specific modal to toggle.

  1. <button type="button" data-bs-toggle="modal" data-bs-target="#myModal">Launch modal</button>

Via JavaScript

Create a modal with a single line of JavaScript:

  1. var myModal = new bootstrap.Modal(document.getElementById('myModal'), options)

Options

Options can be passed via data attributes or JavaScript. For data attributes, append the option name to data-bs-, as in data-bs-backdrop="".

NameTypeDefaultDescription
backdropboolean or the string ‘static’trueIncludes a modal-backdrop element. Alternatively, specify static for a backdrop which doesn’t close the modal on click.
keyboardbooleantrueCloses the modal when escape key is pressed
focusbooleantruePuts the focus on the modal when initialized.

Methods

Asynchronous methods and transitions

All API methods are asynchronous and start a transition. They return to the caller as soon as the transition is started but before it ends. In addition, a method call on a transitioning component will be ignored.

See our JavaScript documentation for more information.

Passing options

Activates your content as a modal. Accepts an optional options object.

  1. var myModal = new bootstrap.Modal(document.getElementById('myModal'), {
  2. keyboard: false
  3. })

toggle

Manually toggles a modal. Returns to the caller before the modal has actually been shown or hidden (i.e. before the shown.bs.modal or hidden.bs.modal event occurs).

  1. myModal.toggle()

show

Manually opens a modal. Returns to the caller before the modal has actually been shown (i.e. before the shown.bs.modal event occurs).

  1. myModal.show()

Also, you can pass a DOM element as an argument that can be received in the modal events (as the relatedTarget property).

  1. var modalToggle = document.getElementById('toggleMyModal') // relatedTarget
  2. myModal.show(modalToggle)

hide

Manually hides a modal. Returns to the caller before the modal has actually been hidden (i.e. before the hidden.bs.modal event occurs).

  1. myModal.hide()

handleUpdate

Manually readjust the modal’s position if the height of a modal changes while it is open (i.e. in case a scrollbar appears).

  1. myModal.handleUpdate()

dispose

Destroys an element’s modal. (Removes stored data on the DOM element)

  1. myModal.dispose()

getInstance

Static method which allows you to get the modal instance associated with a DOM element

  1. var myModalEl = document.getElementById('myModal')
  2. var modal = bootstrap.Modal.getInstance(myModalEl) // Returns a Bootstrap modal instance

Events

Bootstrap’s modal class exposes a few events for hooking into modal functionality. All modal events are fired at the modal itself (i.e. at the <div class="modal">).

Event typeDescription
show.bs.modalThis event fires immediately when the show instance method is called. If caused by a click, the clicked element is available as the relatedTarget property of the event.
shown.bs.modalThis event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the relatedTarget property of the event.
hide.bs.modalThis event is fired immediately when the hide instance method has been called.
hidden.bs.modalThis event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete).
hidePrevented.bs.modalThis event is fired when the modal is shown, its backdrop is static and a click outside the modal or an escape key press is performed with the keyboard option or data-bs-keyboard set to false.
  1. var myModalEl = document.getElementById('myModal')
  2. myModalEl.addEventListener('hidden.bs.modal', function (event) {
  3. // do something...
  4. })