Bootstrap modal z-index

后端 未结 9 1390
时光说笑
时光说笑 2020-12-29 20:22

The issue is: I\'m using parrallx scrolling, so I have z-index in the page now when I try to popup a box-modal by Bootstrap I get him to look like this https://www.dropbox.c

9条回答
  •  感动是毒
    2020-12-29 21:10

    Resolved this issue for vue, by adding to the options an id: 'alertBox' so now every modal container has its parent set to something like alertBox__id0whatver which can easily be changed with css:

    div[id*="alertBox"] { background: red; }
    

    (meaning if id name contains ( *= ) 'alertBox' it will be applied.

提交回复
热议问题