modal appear behind fixed navbar

前端 未结 5 2165
生来不讨喜
生来不讨喜 2021-02-19 03:50

so i have bootstrap based site with fixed navigation bar (that follow you around the page at the top) and when i want to show modal popup, it appear behind those navigation bar,

5条回答
  •  迷失自我
    2021-02-19 04:23

    To solve the problem I included in the CSS a super high z-index value (1000000) for the modal-backdrop (the shadow behind the modal), and a little bit higher one (1000001) for the modal:

      .modal-backdrop {
        z-index: 100000 !important;
      }
    
      .modal {
        z-index: 100001 !important;
      }
    

    Hope it helps!

提交回复
热议问题