Please find the CSS style of the footer.
#footer {
background-color: #000;
bottom: 0px;
color: #fff;
clear: both;
text-align: center;
padding: 5px;
}
How to make footer get displayed at bottom of page (web browser)?
Please find the CSS style of the footer.
#footer {
background-color: #000;
bottom: 0px;
color: #fff;
clear: both;
text-align: center;
padding: 5px;
}
How to make footer get displayed at bottom of page (web browser)?
Try this:
#footer {
background-color: #000;
bottom: 0px;
color: #fff;
clear: both;
text-align: center;
padding: 5px;
position:absolute;
}
Hope this would help
Try this out
<div class="footer" id="footer">My Footer</div>
{
clear: both;
border: 1px groove #aaaaaa;
background: #000;
color: #fff;
padding: 0;
text-align: center;
vertical-align: middle;
line-height: normal;
margin: 0;
position: fixed;
bottom: 0px;
width: 100%;
}
Try it out here http://jsfiddle.net/RDuWn/