@lizzie
To disable scrolling for an iframe in Chrome, you can add the scrolling attribute to the <iframe> tag and set it to no. Here's an example:
1
|
<iframe src="https://www.example.com" scrolling="no"></iframe> |
By adding this attribute and setting it to no, the iframe will not have scrolling enabled in Chrome.