繁体   English   中英

如何在 Windows 手机上滚动引导模式

[英]How to scroll bootstrap modal on windows phone

我有一个由 angularJS (v1.2.14) 使用最新版本的引导程序 (v3.1.1) 创建的简单模态实例

模态不会在我的 Windows 手机上滚动,而是整个页面滚动并且模态被裁剪到窗口大小(见下面的截图)。

当然,它在我的 chrome 和 IE 桌面上运行良好。 尚未在 iOS 和 Android 上对其进行测试,但我想它可以正常工作。

我添加了.modal { position: absolute; } .modal { position: absolute; }到bootstrap.css,但它并没有任何区别。

编辑:这似乎是同样的问题: https : //github.com/twbs/bootstrap/issues/11153

整个页面滚动,模态不滚动(被切断)

解决方案是添加以下css样式:

@-ms-viewport {
    width: auto;
}

html,body {
    -ms-overflow-style: none !important; 
}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM