0
votes

I have a multiple long html tables featuring a lot of tr lines that i want to print with a footer image, to put the image to the bottom of the table i use the 'position: fixed' css tag with 'bottom: 0', it works, but if a table is too long, it's hidden behind the footer image on the bottom of the preview page.

my html is like that

<div class='page-break'> (to break page after this div)
    <table>
        <tr><td>content</td></tr>
        ...lots of lines, more than 1 print page long
    </table>
    <div class='footer'><img src='footer_image' /></div>
</div>
... and repeated many times