janhartmann
janhartmann

Reputation: 15003

When printing page table rows/cells gets split on page break

I have an table with nested tables in. When I am printing this page, the cells gets split on page break.

Is there any chance that I can control that it should jump onto the next page instead of splitting the middle?

Upvotes: 2

Views: 8849

Answers (2)

benrwb
benrwb

Reputation: 883

I have used the following method to keep the contents of a row together on one page:

<tr style="page-break-inside: avoid">

Unfortunately browser support is limited. Works fine in Internet Explorer 9, but not in Chrome 22 or Firefox 15.

Upvotes: 2

krtek
krtek

Reputation: 26597

You can have a look at the page-break-before css property. For example you can set it to auto on each of your cells.

Bur I can't guarantee this will work, each navigator prints a little differently. Firefox is known to have problems printing big tables (more than a page) for example.

Upvotes: 1

Related Questions