移动模态弹出扩展器?
当 ModalPopupExtender 在小屏幕设备上显示时,我遇到了问题。模态高度不会重新调整以适合可视窗口。因为它居中,模态的顶部和底部会被剪裁。尝试滚动它只会滚动底层页面而不是模式。有人遇到过这个问题或者有修复建议吗?
I'm running into an issue with the ModalPopupExtender when displayed on a small screen device. The modals height does not rescale to fit within the viewable window. Because it is centered the top and bottom of the modal gets clipped. Trying to scroll it only scrolls the underlying page not the modal. Anyone run into this or have suggestions on a fix?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须将 Po-pup 的面板设置为使用滚动条。
有两种方法可以做到这一点:
overflow
设置为auto
。下面是一个 JavaScript 函数示例,它将高度设置为页面高度的 90%。
You have to set Po-pup's panel to use scroll bars.
There is 2 way of doing this :
height
(ex :500px
) andoverflow
toauto
using CSS.overflow
toauto
with CSS.Here an example of a JavaScript function that set the height to 90% of the page's height.
我决定使用一系列媒体查询来处理它......
I decided to handle it using a series of media queries....