modal appear behind fixed navbar

前端 未结 5 2159
生来不讨喜
生来不讨喜 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:26

    The navbar is fixed, meaning z-index is only relative to it's children. The simple fix is to simply increase the top margin on the outer modal container to push it down the page slightly and out from behind the navbar.

    Otherwise, your modal markup has to sit in your header and you need to give it a higher z-index than the z-index of the parent navbar.

提交回复
热议问题