JSFiddle - React, Tailwind, and code Playground
HTML
<table id="wrapper">
<thead>
<tr>
<td id="header"></td>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="0" id="footer">
FOOTER IMAGE
</td>
</tr>
</tfoot>
<tbody>
<tr>
<td id="content">
Welcome
<h1>NEXT PAGE</h1>
just one line
</td>
</tr>
</tbody>
</table>
CSS
@media print {
h1 {
page-break-before: always;
}
@page {
size: A4;
margin: 0;
}
#footer {
position: absolute;
bottom: 0;
}
}