Bootstrap tooltip showing behind modal window

后端 未结 3 1243
半阙折子戏
半阙折子戏 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 );
    }
    
    0 讨论(0)
  • 2021-02-07 20:12

    Try without comma before !important:

    .tooltip{
      z-index: 1151 !important;
    }
    
    0 讨论(0)
  • 2021-02-07 20:21

    this worked for me.

    .tooltip{
      z-index: 1 !important;
    }
    
    0 讨论(0)
提交回复
热议问题