
Originally Posted by
Morthian
How do I get the height of the iframe to fill the rest of the window?
I'm sure there are a tone of errors in this code, but something along these lines should work:
Code:
<body style="position:relative; height:100%; width:100%;">
<iframe source="http://www.google.com" style="height:100%;width:100%;position:absolute;top:0;z-index:0" />
<div style="width:100%;height:100px;position:absolute;z-index:100;top:0;">
<a href="http://www.google.com">Break out of this frame</a>
</div>
</body>
Bookmarks