Bootstrap modal appearing under background

前端 未结 30 1410
离开以前
离开以前 2020-11-22 17:09

I have used the code for my modal straight from the Bootstrap example, and have included only the bootstrap.js (and not bootstrap-modal.js). However, my modal is appearing u

30条回答
  •  长情又很酷
    2020-11-22 17:25

    If the modal container has a fixed or relative position or is within an element with fixed or relative position this behavior will occur.

    Make sure the modal container and all of its parent elements are positioned the default way to fix the problem.

    Here are a couple ways to do this:

    1. Easiest way is to just move the modal div so it is outside any elements with special positioning. One good place might be just before the closing body tag .
    2. Alternatively, you can remove position: CSS properties from the modal and its ancestors until the problem goes away. This might change how the page looks and functions, however.

提交回复
热议问题