Transparent Bootstrap Panel

后端 未结 3 1289
轻奢々
轻奢々 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条回答
  •  萌比男神i
    2021-01-04 01:08

    .transparent{    
        background-color: rgba(0,0,0,0.15);
    }
    
    .panel{
        background-color: transparent;
        border: 1px #222;
    }
    
    Título

提交回复
热议问题