您可以在工具提示上使用
white-space:pre-wrap
.这将使工具提示遵循新行.如果行长度超过容器的默认最大宽度,则行仍会换行.
.tooltip-inner {
white-space:pre-wrap;
}
如果您要防止文字包围,请改为执行以下操作.
.tooltip-inner {
white-space:pre;
max-width:none;
}
您可以在工具提示上使用
white-space:pre-wrap
.这将使工具提示遵循新行.如果行长度超过容器的默认最大宽度,则行仍会换行.
.tooltip-inner {
white-space:pre-wrap;
}
.tooltip-inner {
white-space:pre;
max-width:none;
}