我使用SweetModal.js并且如果模态的高度超过屏幕高度,则无法滚动到模态的顶部。您可以在业主注册表格(右侧)http://om.hello21group.ru/上查看,只需添加几个地方即可增加模态的高度
有没有办法解决它?
答案 0 :(得分:2)
.sweet-modal-overlay {
overflow: scroll !important;
}
.sweet-modal-box{
max-height: unset !important;
height: unset !important;
}
它允许您在sweetModal上滚动文本。
答案 1 :(得分:1)
在你的CSS中,你已经给出了
.sweet-modal{
top:50%; /* . -- issue -- */
}
导致了这个问题。请将其值更改为其他值,例如
top:80%;
可以解决您的问题