iframe sizing - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:45:17Z http://stackoverflow.com/feeds/question/91721 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/91721/iframe-sizing 0 iframe sizing Mark Smitheman 2008-09-18T11:19:53Z 2008-09-18T12:27:10Z <p>I am displaying pages from an external site (that I own) in an iframe in one of my pages, and it's fine except when viewed in Opera with the browser reduced down (not widescreen), when the iframe shrinks and squashes the content. It works in widescreen (maximise browser window), and is OK in IE7, Firefox, Chrome and Safari in maximise and reduced. I have set the frame dimensions in the HTML and have nested thee iframe in a 'div' whhich is larger than the iframe via the css. Is this a peculiar bug to Opera or is there something I can do about it?</p> http://stackoverflow.com/questions/91721/iframe-sizing/92061#92061 1 Answer by rams for iframe sizing rams 2008-09-18T12:27:10Z 2008-09-18T12:27:10Z <p>We had a similar issue with iFrame sizing on our web app main page, although in IE6. The solution was to trap the window.onresize event and call a JavaScript funtion to appropriately size the iFrame. "content" is the name of the iframe we want sized. Also note that we are using ASP.Net AJAX's $get which translates to document.getElementById()</p> <pre><code> &lt;script type="text/javascript"&gt; window.onresize=resizeContentFrame; resizeContentFrame(); function resizeContentFrame(){ setFrameHeight($get('content')); } function setFrameHeight(f){ if(isDefined(f)){ var h=document.documentElement.scrollHeight; h-=(HEADER_HEIGHT+CONTENT_PADDING+5); f.style.height=h+'px'; } } &lt;/script&gt; </code></pre>