我在调用Bootstrap模态时遇到此问题。有人可以帮我还是指导我应该怎么做?
屏幕截图:
代码:
<!-- Button trigger modal -->
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal">
Launch demo modal
</button>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Modal title</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
...
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Save changes</button>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
如果模式容器的位置固定或相对,或在 具有固定或相对位置的元素会发生这种情况。
确保模式容器及其所有父元素是 定位了解决问题的默认方法。
以下是执行此操作的几种方法:
最简单的方法是将模式div移到任何 具有特殊定位的元素。一个好地方可能就在 结束的身体标签。
或者,您可以删除职位: 从模态及其祖先开始的CSS属性,直到问题解决 远。但是,这可能会改变页面的外观和功能。