更改导航栏的背景颜色

时间:2018-10-22 17:54:15

标签: html css

我尝试为每个单独的导航栏选项使用id,但是背景色不会仅更改导航栏中的文本更改。 我需要的结果是为每个导航栏选项获取背景颜色。(请注意,这是我正在编辑的引导程序模板)。 This is a link to my files with what I have tried so far.

2 个答案:

答案 0 :(得分:0)

您可以使用style="background-color:blue;"

在html中添加样式。

答案 1 :(得分:0)

如果您正在使用引导程序模板,则可以使用以下类

class="bg-primary" // to add blue background.
.bg-secondary // to add gray.
.bg-success   // to add green etc.

要更改文本,请使用class="text-primary"和其他类。 查看更多here(colors)here (navbar)