如何删除滚动 iframe。尝试过已知的解决方案
How to remove scrolling iframe. Tried known solutions
我正在尝试删除 https://cardmart.com.au 处的滚动条。如果您单击“联系人”,它会在 iframe 中加载一个表单,而我终究无法弄清楚如何删除该滚动条。
我查看了此线程中的解决方案 - HTML iframe - disable scroll
但它不适合我的情况,或者我实施错误。
非常感谢任何帮助。
卷轴似乎不在 iframe
上,它在 iframe
的 body
上。我正在使用 Google 开发人员工具,发现如果将 overflow: hidden;
添加到 iframe
,它就不起作用。您必须转到 iframe
中显示的页面并将此 style
添加到该页面的 body
:
body {
overflow: hidden;
/* Other code */
}
我正在尝试删除 https://cardmart.com.au 处的滚动条。如果您单击“联系人”,它会在 iframe 中加载一个表单,而我终究无法弄清楚如何删除该滚动条。
我查看了此线程中的解决方案 - HTML iframe - disable scroll
但它不适合我的情况,或者我实施错误。
非常感谢任何帮助。
卷轴似乎不在 iframe
上,它在 iframe
的 body
上。我正在使用 Google 开发人员工具,发现如果将 overflow: hidden;
添加到 iframe
,它就不起作用。您必须转到 iframe
中显示的页面并将此 style
添加到该页面的 body
:
body {
overflow: hidden;
/* Other code */
}