How do I crop the contents of an Iframe to show a part of a page? How do I crop the contents of an Iframe to show a part of a page? asp.net asp.net

How do I crop the contents of an Iframe to show a part of a page?


Is there any way that I can crop the contents of the downloaded page to only show a section of that page on my website?

No. The Same Origin Policy prevents you from manipulating the iframe in any way, including the scroll position.

There would be a workaround by putting the iframe into an a div container that has a defined height and width, and overflow: hidden to clip the view port:

<div style="width: 500px; height: 500px; overflow: hidden">

and giving the iframe a relative position:

<iframe src="..." style="position: relative; left: -100px; top: -100px">

this way, you can adjust the portion of the iframe that is visible on the page. However, the whole page still gets rendered, and this approach is not immune to influences like scrolling inside the iframe.


<div style="position: absolute; left: 0px; top: 0px; border: solid 2px #555; width:594px; height:332px;"><div style="overflow: hidden; margin-top: -100px; margin-left: -25px;"></div><iframe src="http://www.centricle.com/tools/html-entities/" scrolling="no" style="height: 490px; border: 0px none; width: 619px; margin-top: -60px; margin-left: -24px; "></iframe></div></div>

This code worked for me.

Source [ http://extechbuzz.blogspot.com/2012/12/iframe-how-to-display-specific-part-of.html ]


To crop off the ads at the bottom of the embedded page, I used the following:

<div style="width: 1000px; height: 390px; overflow: hidden"><iframe src="https://openflights.org/user/dankohn1" width="1000"height="600" style="border:none" scrolling="no"></iframe></div>