Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 ?

share|improve this question
7  
On a tangent, it might be worth adding a <thead> to your table with the following css thead {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

3 Answers

up vote 38 down vote accepted
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
<style type="text/css">
    table { page-break-inside:auto }
    tr    { page-break-inside:avoid; page-break-after:auto }
    thead { display:table-header-group }
    tfoot { display:table-footer-group }
</style>
</head>
<body>
    <table>
        <thead>
            <tr><th>heading</th></tr>
        </thead>
        <tfoot>
            <tr><td>notes</td></tr>
        </tfoot>
        <tr>
            <td>x</td>
        </tr>
        <tr>
            <td>x</td>
        </tr>
        <!-- 500 more rows -->
        <tr>
            <td>x</td>
        </tr>
    </tbody>
    </table>
</body>
</html>
share|improve this answer
This does not work in all browsers. It does seem to work in FireFox 3.6 Mac OS. – daustin777 Oct 8 '10 at 14:23
2  
This also fails in WebKit browsers (eg. Safari and Chrome) – Michael Haren Mar 14 '12 at 19:51
2  
While this is the standards-compliant way to do this, the only browser that currently implements the standard is Opera. Note that this is part of css2, and so the lack of implementation is likely to be a problem for some time to come, because apparently no-one cares. – pkh May 8 '12 at 19:16
3  
The CSS 2.1 specification indicates that page break style attributes are only applied to block-level elements. The default display mode for table rows is table-row. Unfortunately, no table elements are block level elements by default, including the table itself. – lthibodeaux Nov 30 '12 at 21:07
1  
@SinanÜnür It's not a requirement, so you can't rely on it, and unfortunately from my testing I can see that webkit saw "may" and ignored anything beyond it. Strangely, IE's got some rather nice large table printing support. Never thought I'd sing its praises on any given point. – lthibodeaux Dec 2 '12 at 16:39
show 4 more comments

Note: when using the page-break-after:always for the tag it will create a page break after the last bit of the table, creating an entirely blank page at the end every time! To fix this just change it to page-break-after:auto. It will break correctly and not create an extra blank page.

<html>
<head>
<style>
@media print
{
  table { page-break-after:auto }
  tr    { page-break-inside:avoid; page-break-after:auto }
  td    { page-break-inside:avoid; page-break-after:auto }
  thead { display:table-header-group }
  tfoot { display:table-footer-group }
}
</style>
</head>

<body>
....
</body>
</html>
share|improve this answer

Use these CSS properties:

page-break-after

page-break-before 

For instance:

<html>
<head>
<style>
@media print
{
table {page-break-after:always}
}
</style>
</head>

<body>
....
</body>
</html>

via

share|improve this answer
It works on table rows ? – h3. Nov 19 '09 at 14:27
I'm not sure, you'll have to check. If not, split into different arrays and separate the arrays by an empty div – marcgg Nov 19 '09 at 14:27
(or on the "table" element) – marcgg Nov 19 '09 at 14:28
You will have to apply it to the table row or even cell, but not to the table, I think. Other than that, it should work. – Pekka 웃 Nov 19 '09 at 14:29
does not work in chrome. Is ignored as if 6/13/2012 when applied to TR – ladieu Jun 13 '12 at 19:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.