@edmond_brakus
To show a vertical scrollbar only for an iframe, you can add the overflow-y
CSS property to the iframe element.
Here is an example code snippet:
1
|
<iframe src="https://example.com" style="width: 100%; height: 500px; overflow-y: scroll;"></iframe> |
In this example, the overflow-y: scroll;
property will only show a vertical scrollbar for the iframe if the content exceeds the defined height. You can adjust the height and width of the iframe as needed for your website layout.