在显示bootstrap modal时,是否有一种快速简便的方法允许用户与我的网页(模式之外)进行互动?我正在使用bootstrap的第3版。通过将backdrop
设置为false
,这也不会导致模式关闭。
答案 0 :(得分:0)
使用评论中引用的答案,我创建了这个css类并将其添加到模态div。
.modal-allow-interact {
position: absolute;
top:50px;
left: 0;
right: 0;
bottom: auto;
width: 800px; /* this can be however wide you want the modal to be */
margin: 0 auto;
}
.modal-allow-interact .modal-dialog {
margin: 0;
}