Logo v4.3.1
Image Description

No Results

  • Get Support
  • Preview Demo
Logo v4.3.1
  • Docs
  • Snippets
  • Documentation
  • Introduction
  • Getting started
  • Getting Started
  • Gulp
  • Customization
  • Credits
  • Changelog
  • Design & Graphics
  • Bootstrap Icons
  • Duotone Icons
  • Illustrations
  • Components
  • Accordion
  • Alerts
  • Avatars
  • Badge
  • Breadcrumb
  • Buttons
  • Cards
  • Collapse
  • Column Divider
  • Devices
  • Divider
  • Dropdowns
  • Icons
  • List Group
  • Lists
  • Legend Indicator
  • Modal
  • Offcanvas
  • Page Header
  • Pagination
  • Popovers
  • Progress
  • Profile
  • Shapes
  • Spinners
  • Steps
  • Tab
  • Tables
  • Text Highlight
  • Toasts
  • Tooltips
  • Typography
  • Navbars
  • Navbar
  • Navs
  • Mega Menu
  • Scrollspy
  • Basic forms
  • Basic Forms
  • Checks & Switches
  • Input Group
  • Advanced Forms
  • Advanced Select
  • File Attachments
  • Drag’ n’ Drop File Uploads
  • WYSIWYG Editor
  • Quantity Counter
  • Input Mask
  • Step Forms (Wizards)
  • Range Slider (noUiSlider)
  • Add Field
  • Toggle Password
  • Count Characters
  • Toggle Switch
  • Toggle State
  • Switch
  • Media
  • Fullscreen Lightbox
  • Video Background
  • Video Player
  • Swiper
  • Others
  • Maps (Leaflet)
  • Chart.js
  • Circles.js (Pie Chart)
  • Sticky Block
  • Countdown
  • Sorting (Shuffle.js)
  • Go To
  • Show Animation
  • Typed.js
  • Utilities
  • Backgrounds
  • Borders
  • Colors
  • Links
  • Position
  • Rotations
  • Shadows
  • Sizing
  • Spacing
  • Z-index

Popover

Documentation and examples for adding Bootstrap popovers, like those found in iOS, to any element on your site.

Bootstrap Popovers documentation

Example

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

  • Preview
  • HTML
Image Description

Popover on top

Image Description

Popover on right

Image Description

Popover on bottom

Image Description

Popover on left

              
                <div class="row">
                  <div class="col-lg-3">
                    <a class="d-block text-center" href="#" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="top" data-bs-content="And here's some amazing content. It's very engaging. Right?">
                      <img class="img-fluid mb-3" src="../assets/svg/components/popover-top.svg" alt="Image Description">
                      <h4>Popover on top</h4>
                    </a>
                  </div>

                  <div class="col-lg-3">
                    <a class="d-block text-center" href="#" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="right" data-bs-content="And here's some amazing content. It's very engaging. Right?">
                      <img class="img-fluid mb-3" src="../assets/svg/components/popover-Backward.svg" alt="Image Description">
                      <h4>Popover on right</h4>
                    </a>
                  </div>

                  <div class="col-lg-3">
                    <a class="d-block text-center" href="#" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="bottom" data-bs-content="And here's some amazing content. It's very engaging. Right?">
                      <img class="img-fluid mb-3" src="../assets/svg/components/popover-bottom.svg" alt="Image Description">
                      <h4>Popover on bottom</h4>
                    </a>
                  </div>

                  <div class="col-lg-3">
                    <a class="d-block text-center" href="#" data-bs-container="body" data-bs-toggle="popover" data-bs-placement="left" data-bs-content="And here's some amazing content. It's very engaging. Right?">
                      <img class="img-fluid mb-3" src="../assets/svg/components/popover-left.svg" alt="Image Description">
                      <h4>Popover on left</h4>
                    </a>
                  </div>
                </div>
                <!-- End Row -->