Sometimes, we want to make Twitter Bootstrap tooltips have multiple lines with CSS.
In this article, we’ll look at how to make Twitter Bootstrap tooltips have multiple lines with CSS.
How to make Twitter Bootstrap tooltips have multiple lines with CSS?
To make Twitter Bootstrap tooltips have multiple lines with CSS, we can set the white-space style to pre-wrap.
For instance, we write
.tooltip-inner {
white-space: pre-wrap;
}
to style the tooltip with white-space set to pre-wrap.
Conclusion
To make Twitter Bootstrap tooltips have multiple lines with CSS, we can set the white-space style to pre-wrap.