在bootstrap中创建了一个带有标题的popover(data-original-title).我怎样才能大胆?
小提琴链接http://jsfiddle.net/DivineChef/8J5w6/1/
最佳答案
以下是实现目标的三种可能性.
>使用data-html = true并将您的标题包装在< strong>中元件
DEMO with data attribute
>在初始化时使用html:true并将标题包装在< strong>中元件
$('[rel=popover]').popover({ html : true });
DEMO with popover param
>使用CSS更改所有弹出标题的外观
.popover .popover-title {
font-weight: bold;
}
原文链接:https://www.f2er.com/css/427481.html
猜你在找的CSS相关文章