How to make Twitter Bootstrap tooltips have multiple lines with CSS?

Sometimes, we want to make Twitter Bootstrap tooltips have multiple lines with CSS.

How to make Twitter Bootstrap tooltips have multiple lines, we will look at in this article with CSS.

How to make Twitter Bootstrap tooltips have multiple lines with CSS?

Make the Twitter Bootstrap tooltips have multiple lines with CSS, we can set the white-space style to pre-wrap.
For instance, we can write

.tooltip-inner {
  white-space: pre-wrap;
}

to style the tooltip with white-space set to pre-wrap.

Conclusion

To make the Twitter Bootstrap tooltips have multiple lines, we can set the white-space style to pre-wrap with CSS.

Leave a Reply