If i'm printing more than 1 pages, the footer will overlapped with data from first page.
How do i managed to set the page footer only printed at the bottom of the last page?
Here is my code:
Code: Select all
<style type="text/css">
.footer
{
position: absolute;
bottom: 0px;
left: 0px;
width: 100%;
}
</style>
<div class="body">
some page content.....
...........
..........
.........
some page content....
</div>
<div class="footer">
some footer notes......
</div>
Any idea how to make my footer only printed at the bottom of the last pages (if my document contains more than one pages)?
Thanks for your kind help.