How To Create a Tooltip
To create a tooltip, add the data-bs-toggle="tooltip"
attribute to an element.
Use the title attribute to specify the text that should be displayed inside the tooltip:
Example
<button type="button" class="btn btn-primary" data-bs-toggle="tooltip" title="Hooray!">Hover over me!</button>
Example
<script> var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')) var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { return new bootstrap.Tooltip(tooltipTriggerEl) }) </script>You can click on above box to edit the code and run again.
Positioning Tooltips
Use the data-bs-placement
attribute to set the position of the tooltip on top, bottom, left or the right side of the element:
Example
<a href="#" data-bs-toggle="tooltip" data-bs-placement="top" title="Hooray!">Hover</a> <a href="#" data-bs-toggle="tooltip" data-bs-placement="bottom" title="Hooray!">Hover</a> <a href="#" data-bs-toggle="tooltip" data-bs-placement="left" title="Hooray!">Hover</a> <a href="#" data-bs-toggle="tooltip" data-bs-placement="right" title="Hooray!">Hover</a>You can click on above box to edit the code and run again.