我使用Twitter Bootstrap创建了一个工具
提示。
工具提示显示三行。但是,我想显示工具提示只有一行。
如何更改工具提示的宽度?这是特定于Twitter Bootstrap还是工具提示本身?
只是重写bootstrap.css
BS2中的默认值为max-width:200px;所以你可以增加它与任何适合你的需要。
.tooltip-inner {
max-width: 350px;
/* If max-width does not work,try using width instead */
width: 350px;
}
原文链接:https://www.f2er.com/bootstrap/234929.html