Popovers

Simple Popover

Popover is a component which displays a box with a content after a click on an element - similar to the tooltip but can contain more content.

                                                    
                                                        <button type="button" class="btn btn-danger" data-bs-toggle="popover" title="Popover title" data-bs-content="And here's some amazing content. It's very engaging. Right?">Click to toggle popover</button>
                                                    
                                                

Dismiss on Next Click

Use the focus trigger to dismiss popovers on the user’s next click of a different element than the toggle element.

                                                        
                                                            <button type="button" tabindex="0" class="btn btn-success" data-bs-toggle="popover" data-bs-trigger="focus" data-bs-content="And here's some amazing content. It's very engaging. Right?" title="Dismissible popover">
                                                                Dismissible popover
                                                            </button>
                                                        
                                                    

Hover

Use the attribute data-bs-trigger="hover" to show the popover on hovering the element.

                                                        
                                                            <button type="button" tabindex="0" class="btn btn-dark" data-bs-toggle="popover" data-bs-trigger="hover" data-bs-content="And here's some amazing content. It's very engaging. Right?" title="Ohh Wow !">
                                                                Please Hover Me
                                                            </button>
                                                        
                                                    

Four Directions

Four options are available: top, right, bottom, and left aligned.

                                                        
                                                            <!-- Top Position -->
                                                            <button type="button" class="btn btn-primary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="top" data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." title="">
                                                                Popover on top
                                                            </button>
                                                            
                                                            <!-- Bottom Position -->
                                                            <button type="button" class="btn btn-primary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="bottom" data-bs-content="Vivamus
                                                            sagittis lacus vel augue laoreet rutrum faucibus." title="">
                                                                Popover on bottom
                                                            </button>
                                                            
                                                            <!-- Right Position -->
                                                            <button type="button" class="btn btn-primary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="right" data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." title="">
                                                                Popover on right
                                                            </button>
                                                            
                                                            <!-- Left Position -->
                                                            <button type="button" class="btn btn-primary" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="left" data-bs-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus." title="Popover title">
                                                                Popover on left
                                                            </button>
                                                        
                                                    

Custom Popovers

You can customize the appearance of popovers using CSS variables. We set a custom class with data-bs-custom-class="primary-popover" to scope our custom appearance and use it to override some of the local CSS variables.

                                                        
                                                            <button type="button" class="btn btn-primary" data-bs-toggle="popover" data-bs-placement="right"
                                                                data-bs-custom-class="primary-popover" data-bs-title="Primary popover"
                                                                data-bs-content="This popover is themed via CSS variables.">
                                                                Primary popover
                                                            </button>
        
                                                            <button type="button" class="btn btn-success" data-bs-toggle="popover" data-bs-placement="right"
                                                                data-bs-custom-class="success-popover" data-bs-title="Success popover"
                                                                data-bs-content="This popover is themed via CSS variables.">
                                                                Success popover
                                                            </button>
        
                                                            <button type="button" class="btn btn-danger" data-bs-toggle="popover" data-bs-placement="right"
                                                                data-bs-custom-class="danger-popover" data-bs-title="Danger popover"
                                                                data-bs-content="This popover is themed via CSS variables.">
                                                                Danger popover
                                                            </button>
        
                                                            <button type="button" class="btn btn-info" data-bs-toggle="popover" data-bs-placement="right"
                                                                data-bs-custom-class="info-popover" data-bs-title="Info popover"
                                                                data-bs-content="This popover is themed via CSS variables.">
                                                                Info popover
                                                            </button>
                                                        
                                                    

Disabled Elements

Elements with the disabled attribute aren’t interactive, meaning users cannot hover or click them to trigger a popover (or tooltip). As a workaround, you’ll want to trigger the popover from a wrapper <div> or <span> and override the pointer-events on the disabled element.

                                                        
                                                            <span class="d-inline-block" data-bs-toggle="popover" data-bs-content="Disabled popover">
                                                                <button class="btn btn-primary" style="pointer-events: none;" type="button" disabled>Disabled button</button>
                                                            </span>
                                                        
                                                    
Theme Settings
Choose Layout
Vertical
Horizontal
Color Scheme
Light
Dark
Layout Mode
Fluid
Boxed
Detached
Topbar Color
Light
Dark
Brand
Menu Color
Light
Dark
Brand
Layout Position