iFrame 滚动条可以在 webkit 中换肤吗?
现在众所周知,您可以使用 webkit 特定的 CSS 标签(::-webkit-scrollbar-button:start:decrement, ::-webkit-scrollbar-button:end:increment 等)。但是,我注意到我无法设置附加到 iFrame 的滚动条的样式。
问题:有没有办法使用 webkit 访问 iFrame 上的滚动条并设置其样式? (是的,我实际上有一个特定的场景,我希望能够做到这一点。)
提前非常感谢您的帮助!
It's pretty well known by now that you can style scrollbars using the webkit specific CSS tags (::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment, etc. ). However, I've noticed that I cannot style the scrollbars attached to iFrames.
Question: Is there a way to access and style the scrollbars on the iFrame using webkit? (Yes, I've actually got a particular scenario where I'd like to be able to do this.)
Thanks much in advance for any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
iframe 滚动条实际上是 iframe 内文档的一部分。因此,您必须在加载到 iframe 中的文档中设置滚动条样式,而不是在包含 iframe 的文档中设置。
The iframe scrollbars are actually part of the document inside the iframe. As a result, you have to set the scrollbar styles in the document you are loading into the iframe, not in the document that contains the iframe.