How to show vertical scrollbar only for iframe?

by edmond_brakus , in category: Third Party Scripts , 7 months ago

How to show vertical scrollbar only for iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by filiberto , 6 months 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.

Related Threads:

How to style an iframe scrollbar?
How to disable vertical scrolling on touch screens in iframe?
How to show powerpoint in iframe?
How to show insecure content in iframe?
How to show success of a form in an iframe?
How to show base64string data as pdf in iframe or embed?