在bootstrap v2.3.2中,工具提示在中间切换单词

时间:2014-01-14 06:09:46

标签: jquery css twitter-bootstrap

enter image description here

我将tooltip插件初始化为:

$("#id").tooltip({
   placement: 'top',
   trigger: 'hover',
   html: true,
   container: 'body'
});

如何避免这种情况?感谢。

2 个答案:

答案 0 :(得分:1)

添加以下内容:

word-wrap: normal 

给你的CSS。阅读更多here

答案 1 :(得分:0)

我遇到了同样的问题,在工具提示的选项中设置容器:'body'解决了我的问题。 https://github.com/twbs/bootstrap/issues/13418