@filiberto
To disable vertical scrolling on touch screens in an iframe, you can use the CSS property overflow-y
set to hidden
. You can add this CSS to the iframe element within the HTML document.
For example:
1
|
<iframe src="https://example.com" style="overflow-y: hidden;"></iframe> |
This will prevent vertical scrolling within the iframe on touch screens.