I'd like to print multiple pages each with a different footer (i.e. contained within parent wrapper). I can't get it to work...the footer from the 1st page always overflows every other footer (because of fixed positioning)... absolute positioning would be best but there's another problem... you can't tell how long the print page will be so it won't be always positioned at an absolute end of the page.
Here the code that doesn't work...
HTML
<div id="wrap">
<div class="print1">
<div class="foot">
foot 1
</div>
</div>
<div class="page-break"></div>
<div class="print2">
<div class="foot">
foot 2
</div>
</div>
<div class="page-break"></div>
<div class="print3">
<div class="foot">
foot 3
</div>
</div>
<div class="page-break"></div>
</div>
CSS
#wrap{
height:400px;
width:100%;
}
.print1,.print2,.print3{
height:200px;
border-bottom:1px solid #000;
}
.foot{
display: block;
width:100%;
position:fixed;
bottom:0;
margin-top:-54px;
height:54px;
}
.page-break{
display:block;
page-break-before:always
}
It this even possible without JS?
EDIT: z-index doesn't help...
Thanks!