当我使用引导程序打开一个模式时,它不必要地在侧面显示了一个滑块。
CSS中有什么会导致这种情况的吗?
我怎样才能让它不这样做?
模态的 CSS
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
display: none;
overflow: auto;
overflow-y: scroll;
}
当我使用引导程序打开一个模式时,它不必要地在侧面显示了一个滑块。
CSS中有什么会导致这种情况的吗?
我怎样才能让它不这样做?
模态的 CSS
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
display: none;
overflow: auto;
overflow-y: scroll;
}