我在Android设备上遇到了一个非常令人困惑的Banno插件iFrame问题。我无法在iFrame中滚动。你有关于如何实现这一点的示例代码或指南吗?下面是我用来显示滚动条的css。我还将其设置为滚动,这样通常会始终显示滚动条。它可以在iOS和任何网络浏览器上工作,包括移动网络浏览器。如有任何帮助,我们将不胜感激。
这是我在iFrame 中使用的css
height: 400px;
overflow-x: hidden;
overflow-y: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: -ms-autohiding-scrollbar;
在iframe或嵌入式移动浏览器中滚动并不理想。但它应该使用以下样式:
html, body { height: 100%; display: block; overflow: scroll; }