Tool Tip
Documentation and examples for adding custom Bootstrap tooltips with CSS and JavaScript using CSS3 for animations and data-attributes for local title storage.
Tooltip on top
Tooltip on right
Tooltip on bottom
Tooltip on left
Tooltip with HTML
<button type= "button" class= "btn btn-secondary" data-toggle= "tooltip" data-placement= "top" title= "Tooltip on top" >
Tooltip on top
</button>
<button type= "button" class= "btn btn-secondary" data-toggle= "tooltip" data-placement= "right" title= "Tooltip on right" >
Tooltip on right
</button>
<button type= "button" class= "btn btn-secondary" data-toggle= "tooltip" data-placement= "bottom" title= "Tooltip on bottom" >
Tooltip on bottom
</button>
<button type= "button" class= "btn btn-secondary" data-toggle= "tooltip" data-placement= "left" title= "Tooltip on left" >
Tooltip on left
</button>
<button type= "button" class= "btn btn-secondary" data-toggle= "tooltip" data-html= "true" title= "<em>Tooltip</em> <u>with</u> <b>HTML</b>" >
Tooltip with HTML
</button>
Disabled elements
Disabled button
<span class= "d-inline-block" tabindex= "0" data-toggle= "tooltip" title= "Disabled tooltip" >
<button class= "btn btn-primary" style= "pointer-events: none;" type= "button" disabled > Disabled button</button>
</span>