Transparent Bootstrap Panel

后端 未结 3 1291
轻奢々
轻奢々 2021-01-04 00:42

I have picked this free bootstrap theme, and my problem is that I want to create transparent panels, but when I set opacity: 0.8; the text in the panel, of cour

3条回答
  •  死守一世寂寞
    2021-01-04 01:02

    CSS

        body {
            background:#c33;
        }
    
        .panel-transparent {
            background: none;
        }
    
        .panel-transparent .panel-heading{
            background: rgba(122, 130, 136, 0.2)!important;
        }
    
        .panel-transparent .panel-body{
            background: rgba(46, 51, 56, 0.2)!important;
        }
    

    HTML

    Panel primary

    Panel content

    Example

提交回复
热议问题