引导程序4是否附带!important?

时间:2018-08-01 04:39:04

标签: css bootstrap-4

尽管我已将/projects文件放在Bootstrap之后,但是它不起作用。当我检查时,我发现...

css

现在我该如何解决这个问题。

style.css

2 个答案:

答案 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。