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 Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a 100% table *height* setting?

Status
Not open for further replies.

THE4MAN

Technical User
Joined
Mar 17, 2002
Messages
73
Location
US
Does anyone know of an effective way to arrange images on a page so that they are spaced vertically to cover the entire height of the page when viewed at multiple resolutions? I designed a page that looks like I want it to at 800X600, but when viewed at 1024X768, it leaves a great deal of space below the image I had placed to be at the bottom of my page.

Is there a way to set the top most image to hug the top of the screen and the bottom most image to hug the bottom without invoking a scroll bar on the browser window?

Thanks for any suggestions.

Dave
 
you can just make 2 sites depending on resoulution you can redirect your viewer to the dirfferent site
 
Yes you can

<table width=&quot;100%&quot; border=&quot;0&quot; cellspacing=&quot;0&quot; cellpadding=&quot;0&quot; height=&quot;100%&quot;>

or in the properties window of the table right under the w 100% there's a h set it to 1005 too. That's it.

Hope it'll help ;-) Have Fun...

Sharky99 >(::O>
 
I rarely recommend using the table height option, bvut for what you are doing, if it is on one page, what Sharky said will do it, but you will want to make that table two cells or rows. On the top cell, have an image that is aligned to the top, onthe bottom cell aligned to bottom. See code below as a refernce.


<tr>
<td valign=&quot;top&quot;><img src=&quot;top_pic.gif&quot; width=&quot;800&quot; height=&quot;100&quot;></td>
</tr>
<tr>
<td valign=&quot;bottom&quot;><img src=&quot;bottom_pic.gif&quot; width=&quot;800&quot; height=&quot;100&quot;></td>
</tr>

Hope this helps When in doubt, deny all terms and defnitions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top