I've been struggling with this for a while...
I want to use % values so the whole browser width and height are used.
I have a regular table w=100% h=100% as a bounding box. Inside I have a simple table. Then outside the main bounding table there is an iframe.
This works until.... I add a second table inside of the bounding box - which causes my iframe to scroll outside of the visible browser view (so you can't see the down arrow).
Or if I put the iframe inside of this main bounding table, I can't see the iframe at all.
Why is this happening?
Here is a sample of the code so you can see I am not crazy. If you have any suggestions, please oh please do share!!
Thanks, Liz
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><td height="100%">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25%">policy</td>
<td width="25%">endorsements</td>
<td width="25%">billing</td>
<td width="25%">claims</td>
</tr>
</table>
</td></tr></table>
<iframe id=content name="content" src=" width="100%" height="100%" scrolling="Default" frameborder="0" marginwidth="0" marginheight="0" >hello</iframe>
I want to use % values so the whole browser width and height are used.
I have a regular table w=100% h=100% as a bounding box. Inside I have a simple table. Then outside the main bounding table there is an iframe.
This works until.... I add a second table inside of the bounding box - which causes my iframe to scroll outside of the visible browser view (so you can't see the down arrow).
Or if I put the iframe inside of this main bounding table, I can't see the iframe at all.
Why is this happening?
Here is a sample of the code so you can see I am not crazy. If you have any suggestions, please oh please do share!!
Thanks, Liz
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr><td height="100%">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="25%">policy</td>
<td width="25%">endorsements</td>
<td width="25%">billing</td>
<td width="25%">claims</td>
</tr>
</table>
</td></tr></table>
<iframe id=content name="content" src=" width="100%" height="100%" scrolling="Default" frameborder="0" marginwidth="0" marginheight="0" >hello</iframe>