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

Dismissible & Interactive Popovers

  • data-bs-trigger=”focus” → Popover disappears when clicking outside
  • data-bs-html=”true” → Allows HTML inside popovers
  • data-bs-container=”body” → Ensures popover stays within viewport
HTML
<button type="button" class="btn btn-info" data-bs-toggle="popover" data-bs-trigger="focus" title="Dismissible Popover" data-bs-content="Click outside to dismiss me!">
  Focus Popover
</button>

Explanation:

This popover disappears automatically when you click outside of it.

HTML
<button type="button" class="btn btn-dark" data-bs-toggle="popover" data-bs-html="true" title="<strong>Popover Header</strong>" data-bs-content="This is a <em>popover</em> with <b>HTML</b>.">
  HTML Popover
</button>

Explanation:

data-bs-html=”true” allows bold, italic, and links inside popovers.