Forum How do I...?

Tables larger than one page

nick_mac
I have a case where a table can be larger than one page (but that is not always the case). When the table goes over a page break the bottom of the table on the first page does not fill in the closing line.. Is there a way in the CSS to do this? I've tried looking around the documentation but can't seem to find anything that would work well. Thanks in advance and sorry for the noob-ish question, I'm still very new to CSS and prince :)
mikeday
If the table is breaking within a row, try adding this rule to prevent it:
tr { page-break-inside: avoid }

This might not help if you have table cells longer than a page though; we're still working on improving this case.