Forum Moderators: open

Message Too Old, No Replies

How to make a cell/table sit at the bottom of the screen

in all resolutions

         

diddlydazz

7:49 pm on Feb 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Is there a way to make a cell or a table sit at the bottom of the screen?

ie.

<table>-------------------
<content>------
-------
-------
<table>at bottom of screen

i am sure there must be :)

thanks in advance as always

dazz

txbakers

8:05 pm on Feb 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



If you set a fixed height for the middle "blank" table, you could position the bottom one where you wanted it.

But I'm not sure there is way to get it there for all resolutions automatically.

Maybe in a CSS....

idiotgirl

8:08 pm on Feb 4, 2002 (gmt 0)

10+ Year Member Top Contributors Of The Month



Not sure if this is what you're looking for - but here is one approach (this could also be done with CSS as a DIV - using no tables at all):

<table border="0" height="100%"> 
<tr><td>
<!-- content or other stuff -->
</td></tr>
<tr><td valign="bottom">
<!-- stuff for bottom -->
</td></tr></table>

diddlydazz

8:24 pm on Feb 4, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Thanks for the replies

The page is set up with 3 different tables with columns of different widths.

I just wanted to align the last cell with the bottom of the screen, but I suppose I can't :(

Thanks anyway

dazz

Jaya

5:22 am on Feb 5, 2002 (gmt 0)

10+ Year Member



Why don't you try with inner tables? Put an outer table with three rows(since your page contains three tables) with each row containing a table. You can fix the height and alignment of the third(bottom) row as desired.

<tr>
<td height="20%" align="left" valign="bottom">
<table>
---contents---
</table>
</td>
</tr>

Note : Set the height and width of the outer table to 100%.

Hope this helps. :)

IanKelley

8:16 am on Feb 5, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Table height percentages will definitely work in IE but... last I checked... not with Netscape.

webster2001

6:32 pm on Feb 8, 2002 (gmt 0)



CuteFTP Pro's HTML editor rocks for making tables on a fly.

gph

6:20 am on Feb 13, 2002 (gmt 0)

10+ Year Member



You can force NN4 to work by using this script with a transparent gif set to 100% height.

[dragonquest.com...]

bufferzone

7:51 am on Feb 13, 2002 (gmt 0)

10+ Year Member



Take a look at this thread.

[webmasterworld.com...]

You can do this with DHTML, look at the cross-browser link to se exambles on how to do it

Regards
Kim