如何禁用iframe中的滚动条,然后加载完整的网页并使用浏览器滚动条向上和向下滚动? iframe看起来应该是页面的一部分,而不是iframe。
答案 0 :(得分:1)
你想要这样的东西:
<iframe src="" scrolling="no" seamless></iframe>
如果存在,seamless属性指定<iframe>
看起来应该是包含文档的一部分,然后没有边框或滚动条。仅在Opera,Chrome和Safari中支持不良点。
和css:
iframe {
overflow:hidden;
}
答案 1 :(得分:0)
试试这个,
<iframe src="" scrolling="no"></iframe>
或
iframe {
overflow:hidden;
}
或
iframe {
overflow-x:hidden;
overflow-y:hidden;
}