Hi,
I want to insert the copyright information on the bottom of the page. If the page is empty, meaning that the content doesn't scroll the page.
How to move the text to the very bottom of the page, while keeping it below the page content?Edit, if page is empty, I want the text to still appear by bottom border of the web browser.
Thanks
Loading
SenthilkumarPosted Mar 1, 2012, 3:08 AM
Set the footer tag in the bottom as fixed position.
Copyright (c) 2008
.footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
Hope this will you to get what do you want...