html - Table cell height is not maintained on page break -


i'm having dynamic table rendered on pdf using plugin dompdf. i'm trying give every cell in table constant height css styles:

.shipment td {     page-break-inside: avoid;     border-bottom: 1px solid black;     height: 28px; } 

the problem cells contained in first page correct height, every cell shown second page on gets height reset default value.

here little example of table: https://jsfiddle.net/4axc4l56/

is there way have height want set cells in every page?


Comments

Popular posts from this blog

jOOQ update returning clause with Oracle -

java - Warning equals/hashCode on @Data annotation lombok with inheritance -

java - BasicPathUsageException: Cannot join to attribute of basic type -