Bootstrap Modal immediately disappearing

后端 未结 27 1095
清歌不尽
清歌不尽 2020-12-04 07:18

I\'m working on a website using bootstrap.

Basically, I wanted to use a modal in the home page, summoned by the button in the Hero Unit.

Button code:

27条回答
  •  北海茫月
    2020-12-04 07:49

    I came across this issue myself today and it happened to be only in Chrome. What made me realise it might be a rendering issue. Moving the specific modal to it's own rendering layer solved it.

    #myModal {
      -webkit-transform: translate3d(0, 0, 0);
    }
    

提交回复
热议问题