data-descr tooltip code example

Example 1: tooltip bootstrap

<!-- data-container="body"	->	Show above all -->
<!-- data-html="true" 		->	Accept html -->
<!-- data-placement="right"	->	Tooltip side (right,top,left,bottom) -->
<a data-container="body" data-toggle="tooltip" data-html="true" data-placement="right" title="Teste">

Example 2: how to show text at the time of hover in bootstrap

<div class="text-center my-3">
  <b-button v-b-tooltip.hover title="Tooltip directive content">
    Hover Me
  </b-button>

  <b-button id="tooltip-target-1">
    Hover Me
  </b-button>
  <b-tooltip target="tooltip-target-1" triggers="hover">
    I am tooltip <b>component</b> content!
  </b-tooltip>
</div>

Tags:

Css Example