Page breaks

If you need to show a web page as a formatted report with page breaks that can be printed, apply the style "page-break-before:always"
...
...
<table>
<tr>
<td>this must be shown in the first page</td>
</tr>
</table>
<table style="page-break-before:always">
<tr>
<td>this must be shown in the second page</td>
</tr>
</table>

....
....

Comments