I have a table with a fix height. All rows except one have also a height defined. The sum of the row heights is together less than the height of the table.
Instead of increasing only the height of the row with no height definition, Prince adjusts all rows to an equal height to fill the table.
Thanks for your support.
Instead of increasing only the height of the row with no height definition, Prince adjusts all rows to an equal height to fill the table.
<html>
<head>
<title>sdfs</title>
</head>
<body>
<table style="border: 1px solid red; height:200mm;">
<tr style="height: 1mm;"><td style="border:1px solid green;">text</td></tr>
<tr style="height: 1mm;"><td style="border:1px solid green;">text</td></tr>
<tr style="height: 1mm;"><td style="border:1px solid green;">text</td></tr>
<tr><td style="border:1px solid green;">text</td></tr>
</table>
</body>
</html>
Thanks for your support.