I have a project which requires printing a HTML table with many rows.
My problem is the way the table is printed over multiple page. It will sometimes cut a row in half, making it unreadable because one half is on the bleeding edge of a page and the remainder is printer on the top of the next page.
The only plausible solution I can think of is using stacked DIVs instead of a table and force page-breaks if needed.. but before going through the whole change I thought I could ask here before.
Any ideas ?
<thead>to your table with the following cssthead {display: table-header-group; }so as to print the table-header on all subsequent pages (useful for loooooong data tables). – David Thomas Nov 19 '09 at 14:38