问题:
我有一个包含列表组的Bootstrap面板。如果我向最后一个列表组项添加工具提示,则面板的下边框正在消失。
解决方案尝试:
我怀疑两个问题中的一个可能导致这个问题:
我开始怀疑#2,因为bootstrap css中有以下内容:
.panel>.list-group:last-child .list-group-item:last-child {
border-bottom:0;
border-bottom-right-radius:3px;
border-bottom-left-radius:3px
}
由于工具提示会向列表组添加另一个元素,因此列表组项不再是最后一个子项,因此此规则将停止应用。但是,在将.list-group-item:last-child
更改为.list-group-item:last-of-type
后会有效地忽略工具提示,问题仍然存在。
答案 0 :(得分:3)
您可以使用container
上的tooltip()
选项。这会将popover附加到父row
,而不会影响list-group
的样式..
$('.list-group-item').tooltip({container:'.row'})