Disable horizontal scrollbar from iframe

If you like to  disable/remove the horizontal scrollbar and enable vertical scrollbar  then you can add a div before the iframe. Here is the following example.

<div style=”overflow:hidden; overflow-y:scroll; height:100px; width:95px;”>
<iframe src=”your-iframe-source-url” height=”1000″ width=”950″ frameBorder=”0″ scrolling=”no”>
</div>

Leave a Reply

Your email address will not be published. Required fields are marked *