Answers for "bootstrap 5 tooltip dynamic content"

0

Tooltip with Html attribute bootstrap 5

<button type="button" class="btn btn-secondary" data-bs-toggle="tooltip" data-bs-html="true" title="<em>Tooltip</em> <u>with</u> <b>HTML</b>">
  Tooltip with HTML
</button>
Posted by: Guest on July-06-2021
0

bootstrap 5 tooltip

<button type="button" class="btn btn-secondary" data-toggle="tooltip" data-placement="top" title="Tooltip on top">
  Tooltip on top
</button>
Posted by: Guest on April-13-2021

Browse Popular Code Answers by Language