How to change the background-color of jumbrotron?

后端 未结 14 1403
遥遥无期
遥遥无期 2021-02-01 13:03

I want to know how to change the background-color of \'jumbotron\' class, it has a default background-color #eee in bootstrap.css.

I tried to override by e

14条回答
  •  萌比男神i
    2021-02-01 13:18

    Adding internal style is not good for SEO and Performance. I add an id to the div e.g. id="jumbocustom" and style it

    #jumbocustom
       {
     background:red;
       }
    

提交回复
热议问题