默认 Lightbox2 出现在页面顶部而不是出现在 iPad 的视口中

Default Lightbox2 appearing at the top of the page instead of in the viewport on iPad

我正在为我的网站使用默认的 Lightbox2。单击图像时,灯箱可以正常工作,只是该框(连同变暗的背景)出现在页面顶部,而不是滚动位置。这只发生在 iPad 上。我缺少的 lightbox.css 中是否有需要调整的内容?

提前致谢!

将此 css 用于深色背景,使用 css 给出固定位置,同时将顶部、左侧、右侧、底部设置为 0,以便它适合屏幕并且其内部的内容将使用溢出滚动自动 css

position: fixed;
z-index: 999;
/* padding-top: 100px; */
left: 0;
top: 0;
bottom:0;
right:0;
overflow: auto;