答案 0 :(得分:1)
您可以使用其父类更改其值。
.bg .bg-info {background-color:none!important;}
答案 1 :(得分:0)
如果您使用“!important”样式,则非样式可以更改此样式。
因此,您要在style.css中使用相同的“!important”(显示重要颜色)。
并在类名称之前提及元素名称。
Style.css:-
div.bg-info{
Background-color:blue !important;
}
p.bg-info{
Background-color:blue !important;
}
h1.bg-info{
Background-color:blue !important;
}
span.bg-info{
Background-color:blue !important;
}
因为在Bootstrap之后调用了style.css。