Hello!
Is it possible to break very wide tables across multiple pages?
I was playing around with break-before: column; but without success.
See attached HTML file for details.
Currently, the relevant CSS looks like this:
th:nth-child(3),
td:nth-child(3) {
column-break-before: always;
break-before: column;
}
It had no effect.
To break a very wide table across multiple pages, the row headers also would have to be repeated.
Does such a feature exist? ( In HTML/CSS or in PrinceXML ? )
Is it possible to break very wide tables across multiple pages?
I was playing around with break-before: column; but without success.
See attached HTML file for details.
Currently, the relevant CSS looks like this:
th:nth-child(3),
td:nth-child(3) {
column-break-before: always;
break-before: column;
}
It had no effect.
To break a very wide table across multiple pages, the row headers also would have to be repeated.
Does such a feature exist? ( In HTML/CSS or in PrinceXML ? )
Edited by CsKwg