filling the screen
Hi,
Say I have the following page, and I want the iframe to fill up the screen, but not go beyond it... I don't know the height of <div id="tabs">, but want <div id="outerFrame"> to fill up the rest of the screen... Any help would be greatly appreciated...
<body>
<div id="tabs">
<img src="Images/tabs" />
</div>
<div id="outerFrame">
<iframe src="http://www.yahoo.ca" style="width: 100%; height: 100%;"></iframe>
</div>
</body>
|