74

I am using Bootstrap 3 and added a tooltip to my div. I've tried using < br > \n and &#013; to create the new line. Would it be a problem with the Bootstrap stopping me?

<div class="content show-tooltip" data-placement="top" 
     data-original-title="1st line of text <br> 2nd line of text">
Pierce McGeough
  • 2,918
  • 8
  • 40
  • 64

2 Answers2

231

You need to add data-html="true" to the markup..

<div class="content show-tooltip" data-html="true" data-placement="top" 
     title="1st line of text <br> 2nd line of text">

Working demo: https://codeply.com/p/C8083WXo5Z

Zim
  • 329,487
  • 83
  • 671
  • 600
4

In the Title use this code to break the line:

HTML

...title="- Item 1 &#013; - Item 2 &#013;"

CSS

.ui-tooltip {
    /* tooltip container box */
    white-space: pre-line;
}

.ui-tooltip-content {
    /* tooltip content */
    white-space: pre-line;
}
Thalles Noce
  • 763
  • 1
  • 8
  • 19
  • 2
    This works, but this adds a space character at the start of my new line. It seems do the same, but without this front space character. – mike123 May 08 '20 at 09:42