工具提示显示三行。但是,我想显示工具提示只有一行。
如何更改工具提示的宽度?这是特定于Twitter Bootstrap还是工具提示本身?
BS2中的默认值为max-width:200px;所以你可以增加它与任何适合你的需要。
.tooltip-inner { max-width: 350px; /* If max-width does not work,try using width instead */ width: 350px; }