I can never get a table to stretch all the way to the bottom screen when I make a site. an example is this:
www.krisgosser.com/gruber/services2.htm (it’s a mock site for a law firm. im not using this layout anymore, but the problem is exactly what happened to this site.)
Look at it in a big resolution. Notice how the table won’t expand all the way to the bottom. I put a fixed height on it, but before when I’d do 100% it woulnd’t work.
body {
/* along with other stuff you may already be using … /
height:100%;
}
html {
/ along with other stuff you may already be using … */
height:100%;
}
you can use this trick in addition to the other ones…
put this in the body to this:
topmargin="0"
It works with the css trick and makes the table fill to the top to the bottom.