How to change background Opacity when bootstrap modal is open

后端 未结 14 2069
慢半拍i
慢半拍i 2020-12-24 00:37

I am using bootstrap modal. When modal is open background content opacity is not changed by default. I tried changing in js using

function showModal() {
doc         


        
14条回答
  •  梦毁少年i
    2020-12-24 01:14

    I am assuming you want to set the opacity of the modal background...

    Set the opacity via CSS

    .modal-backdrop
    {
        opacity:0.5 !important;
    }
    

    !important prevents the opacity from being overwritten - particularly from Bootstrap in this context.

提交回复
热议问题