How to disable horizontal scroll bar in iframe?

Member

by denis , in category: HTML & CSS , 23 days ago

How to disable horizontal scroll bar in iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by orpha , 22 days ago

@denis 

You can disable the horizontal scroll bar in an iframe by adding the following CSS code to the style attribute of the iframe element:

1
<iframe style="overflow-x: hidden;"></iframe>


This CSS code sets the overflow-x property to hidden, which will hide the horizontal scroll bar in the iframe.