我正在使用Bootstrap 3,并向div中添加了一个工具提示。我尝试使用<br> \ n和&#013; 创建新行。Bootstrap阻止我会出现问题吗?
<div class="content show-tooltip" data-placement="top"
data-original-title="1st line of text <br> 2nd line of text">
Answers:
您需要添加data-html="true"
到标记中。
<div class="content show-tooltip" data-html="true" data-placement="top"
title="1st line of text <br> 2nd line of text">
工作演示:http : //www.bootply.com/83099
在标题中,使用以下代码来换行:
的HTML
...title="- Item 1 
 - Item 2 
"
的CSS
.ui-tooltip {
/* tooltip container box */
white-space: pre-line;
}
.ui-tooltip-content {
/* tooltip content */
white-space: pre-line;
}