转到
this site,点击右上角的“
登录”,一个twitter-bootstrap模态窗口将弹出,但会变灰。
为什么会这样呢?
这是因为.navbar-fixed-top的z-index为1030,而模态背景的z-index为1040,导致模态覆盖导航栏。
为了解决这个问题,只需将.modal-background z-index值调整为低于1030。
.modal-backdrop {
z-index: 1020;
}
原文链接:https://www.f2er.com/bootstrap/234232.html