Change the background color in a twitter bootstrap modal?

后端 未结 11 595
死守一世寂寞
死守一世寂寞 2020-12-01 03:01

When creating a modal in twitter bootstrap, is there any way to change the background color? Remove the shading entirely?

NB: For removing shading, this doesn\'

11条回答
  •  清歌不尽
    2020-12-01 03:07

    I used couple of hours trying to figure how to remove background from launched modal, so far tried

    .modal-backdrop {    background: none; }
    

    Didn't work even I have tried to work with javascript like

     
    

    Also didn't work either. I just added

    data-backdrop="false"
    

    to

    
    

    And Applying css CLASS

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

    Now its working like a charm This worked with Bootstrap 3

提交回复
热议问题