How to change the background-color of jumbrotron?

后端 未结 14 1375
遥遥无期
遥遥无期 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:34

    You can also create a custom jumbotron with whatever features/changes you want and apply that class in your html.

    .jumbotronTransp {
       padding: 30px;
       margin-bottom: 30px;
       font-size: 21px;
       font-weight: 200;
       line-height: 2.1428571435;
       color: inherit;
       background-color: transparent;
    }
    

提交回复
热议问题