Adding a table that has a specified height seems to be adding the height of the thead after the height calculation - See attached screenshots, both should be the same height as the black bar on the left.
In my example I use height 100%, but I've also tried setting the height to the same as the container (in this case 403px) with the same result.
Sample code:
Is there a workaround for this in the current version of Prince (11.4)? Or when can we expect a fix? Setting row heights on every row isn't an option (I've seen this suggested in the past)
In my example I use height 100%, but I've also tried setting the height to the same as the container (in this case 403px) with the same result.
Sample code:
<div style="width:684px;height:403px;position:absolute;">
<table style="height:100%;">
<thead>
<tr>
<th style="width:46%"><p> <br></p></th>
<th style="width:18%"><p> <br></p></th>
<th style="width:18%"><p> <br></p></th>
<th style="width:18%"><p> <br><br></p><p> <br></p></th>
</tr>
</thead>
<tbody>
<tr>
<td style="width: 46%"><p></p></td>
<td style="width: 18%"><p> <br></p></td>
<td style="width: 18%"><p> <br></p></td>
<td style="width: 18%"><p> <br></p></td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3"><p>Total</p></td>
<td><p>0€</p></td>
</tr>
</tfoot>
</table>
</div>
Is there a workaround for this in the current version of Prince (11.4)? Or when can we expect a fix? Setting row heights on every row isn't an option (I've seen this suggested in the past)