How do you get a table to always be extended vertically so that it touches the bottom of the browser.. always?
How do you get a table to always be extended vertically so that it touches the bottom of the browser.. always?

Do you have an example of what kind of table your tallking about for mine i just edit the hieght
Okay..
Let me explain to you what I want to do. I am making a website so I can put my work on it. The address is http://greenear.x10hosting.com/Main/index4.html
Right below the footer (where it says "all rights reserved") there is sometimes space showing the background. This depends on what you have your resolution set to. If my site requires you to scroll down, its fine, but if its doesn't, then there is the unwanted space. Check this page:
http://greenear.x10hosting.com/Main/about.html
On the above page, I want the table that everything is set in to extend all the way to the bottom, leaving no space and making everything look.. nicer.
Did you get that?

Like i told you edit the height of that image
I want a table to have 100% height, not an image
set the height of the table to 100%, it should technically expand to fit the whole page or shrink so it fits your content.
Check for margins, they might be causing the white space, try css.
Regards,
Zenax
<style>
div.copyright {
position: absolute;
bottom: 10px;
}
</style>
<div class="copyright">Put your message here</div>
Originally Posted by ZeptOr
I think I get what you mean. The best way to control this is using CSS. The only problem is that the background will still show down the bottom, if the content is shorter than the height of the browser window, but that's not a matter to be concerned about.
What I've done on my site is applied this CSS code to the "body" tag:
You should be able to apply that to the 'table' tag as well, but if you apply it to 'table' alone, there will still be a default margin of 10px at the top and bottom in the 'body' of the page. So it's imperative that you apply it to the 'body' tag.Code:body { margin-top: 0px; margin-bottom: 0px; }
If you want an example where I've applied this, just PM me.
Thanks, I have't tried it yet, but when I get the chance I will
When you get the chance...just tell me if it works or not... ;)