This is using prince 7.0, so this feature may have been fixed. I haven't tested it on newer versions of the application, but I wanted to report it in case it hasn't been.
I have a table with 3 columns. The first row spans all 3 columns. The second row has 2 cells, one that spans 2 columns. When this happens, the last cell on the second row gets pushed out past the bounds of the table.
Source example:
While this is kind of an awkward example since you really shouldn't be formatting in this way, prince should still handle it correctly.
I have a table with 3 columns. The first row spans all 3 columns. The second row has 2 cells, one that spans 2 columns. When this happens, the last cell on the second row gets pushed out past the bounds of the table.
Source example:
<html>
<head>
</head>
<body>
<table class="maintablebreak" width="100%" style="table-layout: fixed">
<tbody>
<tr>
<td colspan="3" style="width: 100%; border: 1px solid black;">
Cell 1
</td>
</tr>
<tr id="1_indv_head" >
<td width="40%" colspan="2">
Cell 2
</td>
<td width="60%">
Cell 3
</td>
</tr>
</tbody>
</table>
</body>
</html>
While this is kind of an awkward example since you really shouldn't be formatting in this way, prince should still handle it correctly.