How to change the background-color of jumbrotron?

后端 未结 14 1251
遥遥无期
遥遥无期 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条回答
  •  心在旅途
    2021-02-01 13:41

    Add this to your css file

    .jumbotron {
        background-color:transparent !important; 
    }
    

    It worked for me.

提交回复
热议问题