如何取消 bootstrap 覆盖?
How to cancel a bootstrap overriding?
在我的 css 文件中,我覆盖了 bootstrap uib-tooltip class 。这适用于我页面的所有工具提示,但我希望其中一个使用 bootstrap 默认值 css ,该怎么做? :not 选择器不起作用
根据你的笔,你需要使用
div:not(.kmg)>.text-primary{
color:red !important;
}
在此处查看代码笔
在我的 css 文件中,我覆盖了 bootstrap uib-tooltip class 。这适用于我页面的所有工具提示,但我希望其中一个使用 bootstrap 默认值 css ,该怎么做? :not 选择器不起作用
根据你的笔,你需要使用
div:not(.kmg)>.text-primary{
color:red !important;
}
在此处查看代码笔