我尝试将CSS应用于html
页面上的所有工具提示,但无法找到方法。
我完成了我的研究并发现了一些结果here和there,但不能使其发挥作用。
以下是我的html
页面的一部分:
<div class="col-sm-3 text-center" title="Tooltip title"> </div>
由于我引用了此页面上的所有tooltips
:
(function (window, $) {
// Set the Tooltips
$(document).ready(function(){
$(document).tooltip({
tooltipClass: "tooltip-styling"
});
});
})(window, $);
tooltip-styling
是以下CSS class
:
.tooltip-styling{
background-color:red !important;
color: red !important;
}
没什么特别的,只是想检查一下是否应用了这种风格。
正如你猜测的那样,事实并非如此。
我该怎么做?
答案 0 :(得分:2)
答案 1 :(得分:1)
根据你的情况,你必须覆盖的css声明是&#34;背景&#34;而不是&#34;背景色&#34;。
https://jsfiddle.net/nrnLgc36/1/
HTML 的
<div class="col-sm-3 text-center" title="Tooltip title">TEST</div>
CSS
.tooltip-styling{
background:green !important;
color: black !important;
}
.col-sm-3 {
display: block;
background: #bacd63;
}
的javascript
(function (window, $) {
// Set the Tooltips
$(document).ready(function(){
$(document).tooltip({
tooltipClass: "tooltip-styling"
});
});
})(window, $);