Bootstrap tooltip showing behind modal window

后端 未结 3 1246
半阙折子戏
半阙折子戏 2021-02-07 20:01

I have a modal window which consists this div:

3条回答
  •  醉酒成梦
    2021-02-07 20:02

    Just do one thing. Check the z-index of your modal popup & set the tooltip z-index +1 of your modal popup z-index.

    so it would be like

    .tooltip{
      z-index:( z-index of modal popup + 1 );
    }
    

提交回复
热议问题