<!-- Tooltips Static Examples -->
<div class="example-tooltip">
<!-- Tooltip Static (On the Top) -->
<div class="tooltip bs-tooltip-top" role="tooltip">
<div class="arrow"></div>
<div class="tooltip-inner">Tooltip on the top</div>
</div>
<!-- Tooltip Static (On the Right) -->
<div class="tooltip bs-tooltip-right" role="tooltip">
<div class="arrow"></div>
<div class="tooltip-inner">Tooltip on the right</div>
</div>
<!-- Tooltip Static (On the Bottom) -->
<div class="tooltip bs-tooltip-bottom" role="tooltip">
<div class="arrow"></div>
<div class="tooltip-inner">Tooltip on the bottom</div>
</div>
<!-- Tooltip Static (On the Left) -->
<div class="tooltip bs-tooltip-left" role="tooltip">
<div class="arrow"></div>
<div class="tooltip-inner">Tooltip on the left</div>
</div>
<!-- Tooltip Static (with HTML) -->
<div class="tooltip bs-tooltip-top" role="tooltip">
<div class="arrow"></div>
<div class="tooltip-inner"><i>Tooltip</i> <u>with</u> <strong>HTML</strong></div>
</div>
</div>
//- Tooltips Static Examples
.example-tooltip
//- Tooltip Static (On the Top)
.tooltip.bs-tooltip-top(role="tooltip")
.arrow
.tooltip-inner Tooltip on the top
//- Tooltip Static (On the Right)
.tooltip.bs-tooltip-right(role="tooltip")
.arrow
.tooltip-inner Tooltip on the right
//- Tooltip Static (On the Bottom)
.tooltip.bs-tooltip-bottom(role="tooltip")
.arrow
.tooltip-inner Tooltip on the bottom
//- Tooltip Static (On the Left)
.tooltip.bs-tooltip-left(role="tooltip")
.arrow
.tooltip-inner Tooltip on the left
//- Tooltip Static (with HTML)
.tooltip.bs-tooltip-top(role="tooltip")
.arrow
.tooltip-inner <i>Tooltip</i> <u>with</u> <strong>HTML</strong>