I am trying to align a div tag to the right, but when I add a Bootstrap tooltip to the left of it, the tooltip is not appearing.
<div class="container-fluid">
<div class="row">
<div id="map" style="width: 100%; height: 300px; border: 1px solid #ccc;">
<div class="map-nav-container">
<div class="mnc-button-group">
<button data-toggle="tooltip" data-placement="left" title="Hello">+</button>
</div>
</div>
</div>
</div>
</div>
This is the CSS code
.map-nav-container{
position:absolute;
right: 0;
overflow: hidden;
z-index: 1000;
}
.mnc-button-group{
margin-top: 30px;
}
You can see the working code here.