How to avoid abrupt page breakage when printing an html table

Asked

Viewed 6,847 times

4

I am developing an html page to be printed later.

But when printing I could notice that the break of pages in the middle of tables, are getting strange and abrupt, as can be seen in the following image:

imagem para demonstração do problema

So how could I treat so that at the time of printing the table row jumps to the next page instead of a piece on each page?

I’ve tried to that and that, and did not succeed.

My test html and css is this (unfortunately it is not possible to see the behavior demonstrated in the print here in the code snippet):

@media screen {
  h1 {
    color: red;
  }
}
@media print {
  h1 {
    color: blue;
  }
  h1.page-break {
    page-break-before: always;
  }
  tr {
    page-break-before: always;
  }
}
<h1>Page 1</h1>
<table border="1">
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
      <th>Column 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
  </tbody>
</table>
<p>
  * coment of table
</p>
<h1 class="page-break">Page 2</h1>
<table>
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
      <th>Column 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
  </tbody>
</table>
<p>
  * coment of table
</p>
<h1 class="page-break">Page 3</h1>
<table>
  <thead>
    <tr>
      <th>Column 1</th>
      <th>Column 2</th>
      <th>Column 3</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
    <tr>
      <td>Data 1</td>
      <td>Data 2</td>
      <td>Data 3</td>
    </tr>
  </tbody>
</table>
<p>
  * coment of table
</p>

  • I’ll tell you what, you can’t predict what kind of printer you’ll print, so there’s no way to get it right in every case, but you can instead of making a table, generate a PDF book to make it easier to print. For printing, tip: based on the resolution of what you are doing in 92DPI...

2 answers

3

You can use styles to prevent this behavior:

<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>
  • 1

    It doesn’t seem to work here for me, continues at the time of printing breaking in the tr of the table, printing half on each page, as I demonstrated in the print, apparently this css has not changed anything, I’m doing something wrong?

  • Here it worked, is the official solution but in fact it is not compatible with all browsers. One thing you can do, which will make it more compatible, is to place the contents of each cell within a div then apply page-break-inside:avoid for all div within their tr, this way some browsers will respect the edge of your tr.

  • Other more complex solutions would be to use Javascript to break your table, by the size of the page, but it is terrible because you can not know the size of it (A3, A4, A5, etc). Derived from this has scripts that convert to PDF (but does not work in IE8), where if you want compatibility you will have to use an external service, where you send the HTML and it returns the PDF for download.

  • True, had tested on Chrome and had not changed anything, now tested on Firefox, and is working perfectly, and very cool that the thead, goes along to the next page. I will test your compatibility tip. In case it would be: tbody > tr > div > td's, in that right hierarchy?

  • tbody > tr > td's > div if you put the div before the td will break in the ies (maybe in 11 work). in your css you can go straight to tbody td > div.

  • Even doing what you suggested, it only worked correctly on Firefox and IE11, I tested on IE11, Maxthon v.4.4.4000, Firefox 35.0.1, Google Chrome Canary 42.0.2304.0, Opera beta 28.0, Google Chrome 40.0.2214.111, Opera 12.17, Safari 5.1.7. But in that case I can suggest that the reports be printed on the approved browsers. + 1 for your good solution, and I will await a possible solution, for the other browsers.

Show 1 more comment

0

See if this solves your case, no guarantee, put this in your CSS style sheet:

@media print {
    table { 
        page-break-after: always; 
    }
}

or:

@media print {
    table { 
          page-break-inside:avoid; 
    }
}
  • I tested it for the question example and it didn’t work beyond the @Gabrielgartz solution. What example did you test and work on? Can draw up a functional example of the solution?

Browser other questions tagged

You are not signed in. Login or sign up in order to post.