Change the background color in a twitter bootstrap modal?

后端 未结 11 559
死守一世寂寞
死守一世寂寞 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:28

    For Bootstrap 4 you may have to use .modal-backdrop.show and play around with !important flag on both background-color and opacity.

    E.g.

    .modal-backdrop.show {
       background-color: #f00;
       opacity: 0.75;
    }
    

提交回复
热议问题