Forum Moderators: not2easy

Message Too Old, No Replies

<div> alinged to page bottom

always at the very bottom of the page

         

mossimo

10:48 pm on Jul 4, 2003 (gmt 0)

10+ Year Member



I have a simple div element i want always at the very bottom of the page.

Is there a css code to make this happin?

<div id="footer">
<p>&copy; 2003-2004 - All Rights Reserved</p>
</div>

Birdman

11:16 pm on Jul 4, 2003 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



This should do the trick:

#bottom{
Position: absolute;
bottom: 0;
}

mossimo

1:15 pm on Jul 5, 2003 (gmt 0)

10+ Year Member



Worked perfectly :)

Thanx Birdman