Force a div tag to the bottom of the page?

Soldato
Joined
27 Aug 2004
Posts
17,111
Location
Geordieland
Ive got a footer at the bottom of my webpage that i want to force onto the bottom of the page, so far ive been unsuccessful. Ive tried floating it and V aligning it, but nothing will work.

CSS

Code:
/*Style for the footer of the webpage*/
#footer		{

		background-color: black;
		color: white;
		font-style: italic;
		text-align:right;
		font-size: 15px;
		border: 2px solid gray;
		}

HTML

Code:
<!--start copyright bar-->
<div id="footer">
	Copyright One Hump or Two
<!--End footer div-->

Cheers for any help
 
Back
Top Bottom