How to show vertical scrollbar only for iframe?

by edmond_brakus , in category: Third Party Scripts , a month ago

How to show vertical scrollbar only for iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by filiberto , a month ago

@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.