I'm trying
<iframe height="100%" ...>
but it still doesn't resize it. When i try the height in pixles it works.
edit: 100% seems to be working on IE but not firefox
You can do it with CSS:
<iframe style="position: absolute; height: 100%; border: none"></iframe>
Be aware that this will by default place it in the upper-left corner of the page, but I guess that is what you want to achieve. You can position with the left
,right
, top
and bottom
CSS properties.