, , ?
position:fixed; bottom:0px;
, , , , .
Updated if you are looking for a footer to keep track of content and be located at the bottom of the page when there is a lack of content. I prefer to use the min-height handle.
<style>
* {
margin:0px;
padding:0px;
}
.page {
min-height:100%;
height: auto !important;
height: 100%;
position: absolute;
width: 100%;
}
</style>
<div class="page">
<div style="height:100px; "> content</div>
<div style="position:absolute; bottom:0px; ">
Min height Hack to make page be at least 100% of screen size
but if content is bigger then scroll bars appear and
this information is under the content. Works with quick mode browsers.
</div>
</div>
Wayne source
share