Hello, I am wanting to page across a row within a table with the header (note thead.table-header-group within the markup) being repeated and text which occurs within the page (note div.page-break-inside:avoid below) appearing on the first page along with the first part of the list. I am getting many page breaks and blank pages when I submit the following to EO-PDF (latest version).
I have tried swapping tables for div's and vice versa but to no avail (I actually have raised a different ticket for the div's query -
use div's instead of tables)
Is there something I am doing wrong ?
<div style="padding-left: 210px; border-right: 1px solid #000; page-break-inside: avoid;">
<table style="width: 100%; border-collapse: collapse;">
<tbody>
<tr>
<td style="border: 1px solid #000; border-right: 0; height: 25px;background-color: #e0e3f2; width: 30px; text-align: center; font-weight: bold; font-size: 10pt;">xxxx</td>
</tr>
<tr>
<td style="border-top: 1px solid #000; border-right: 1px solid #000; border-left: 1px solid #000; text-align: center; font-weight: bold; width: 100%; height: 25px;">yyyy</td>
</tr>
</tbody>
</table>
<table style="width: 100%; border-collapse: collapse;">
<thead style="display: table-header-group">
<tr>
<th style="width: 33%; height: 25px; border-top: 1px solid #000; border-right: 1px solid #000; text-align: center; font-weight: bold; background-color: #f46d43; ">col1head</th>
<th style="width: 33%; height: 25px; border-top: 1px solid #000; border-right: 1px solid #000; text-align: center; font-weight: bold; background-color: #fdae61; ">col2head</th>
<th style="width: 33%; height: 25px; border-top: 1px solid #000; border-right: 1px solid #000; text-align: center; font-weight: bold; background-color: #a9d5ff; ">col3head</th>
</tr>
</thead>
<tbody>
<tr>
<td style="vertical-align: top; border-left: 1px solid #000; border-top: 1px solid #000;border-bottom: 1px solid #000;">
<div>aaaa</div>
<div>bbbb</div>
<div>cccc</div>
<div>dddd</div>
<div>eeee</div>
<div>ffff</div>
<div>gggg</div>
</td>
<td style="vertical-align: top; border-top: 1px solid #000; border-right: 1px solid #000; border-left: 1px solid #000;border-bottom: 1px solid #000;">
<div>mmmm</div>
<div>nnnn</div>
<div>oooo</div>
<div>pppp</div>
</td>
<td style="vertical-align: top; border-top: 1px solid #000; border-right: 1px solid #000;border-bottom: 1px solid #000;">
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
<div>1111</div>
</td>
</tr>
</tbody>
</table>
</div>