Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在将我的 spotify 应用程序迁移到新的预览 api。我遇到的许多问题之一是无法滚动。当视口的内容太长时,不会出现滚动条。
任何人有同样的问题和可能的解决方案?;)
html, body { overflow: visible; }
是解决方案!
您可能有一个防止滚动条出现的 CSS 规则。请求作为 Spotify 视图一部分的 CSS 后,确保将元素的overflow属性设置为:htmlauto
overflow
html
auto
html { overflow: auto; }