How to override Bootstrap's Panel heading background color?

后端 未结 11 1342
情书的邮戳
情书的邮戳 2021-01-31 08:08

I\'m using a Panel from Bootstrap however for the heading I want to use my own background color for the heading. When I don\'t put panel-heading class

11条回答
  •  清酒与你
    2021-01-31 08:18

    This should work:

    .panel > .panel-heading {
        background-image: none;
        background-color: red;
        color: white;
    
    }
    

提交回复
热议问题