Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

sizing an Iframe problem

Status
Not open for further replies.

Albuckj2

Programmer
Jan 7, 2003
68
0
0
GB
Hi,
I have the following code which calls an iframe, but the scrolling bar goes of the bottom of the page and I can't reach the bottom of the page. What am I doing wrong...????

<table width=&quot;100%&quot; height=&quot;100%&quot;>
<tr>
<td><iframe frameborder=&quot;0&quot; width=&quot;100%&quot; height=&quot;100%&quot; id=&quot;portfolioMain&quot; name=&quot;portfolioMain&quot;
src=&quot;<%= goto_url %>&quot; scrolling=&quot;yes&quot;> </iframe></td>
</tr>
</table>
 
try and set the iframe width and height to less than 100%:-

<table width=&quot;100%&quot; height=&quot;100%&quot;>
<tr>
<td><iframe frameborder=&quot;0&quot; width=&quot;98%&quot; height=&quot;98%&quot; id=&quot;portfolioMain&quot; name=&quot;portfolioMain&quot;
src=&quot;<%= goto_url %>&quot; scrolling=&quot;yes&quot;> </iframe></td>
</tr>
</table>

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top