Hi Prince users!
I am evaluating Prince 9.0.3 right now and encountered some problems related to column-span. What I basically try to achieve is a layout based on 3 columns, a table on the left (span column 1 and 2) and some text in the 3rd column. So it should look like this:
My HTML looks is:
Issue 1: column-span is ignored at all
Issue 2: table uses the entire width not only 2/3
Issue 3: each of the 3 columns displays rows overriding the content of the right neighbour columns (ignoring the column width)
Issue 4: table also displays rows in the 3rd column which only should display the content of "<p>"
To me it feels like a user (hey, that's me) problem, so hopefully one of you can point me in the right direction..
Thanks in advance
Jens
I am evaluating Prince 9.0.3 right now and encountered some problems related to column-span. What I basically try to achieve is a layout based on 3 columns, a table on the left (span column 1 and 2) and some text in the 3rd column. So it should look like this:
|0123456789|0123456789|0123456789|
| ,-----,------,----, |text |
| |1----|------|----| |text text |
| |2----|------|----| |... |
| |3----|------|----| | |
| |4----|------|----| | |
| |5----|------|----| | |
| |... |------|----| | |
| |n----|------|----| | |
| '-----'------'----' | |
My HTML looks is:
<div style="column-count:3; column-gap:1em; column-rule-style:double;">
<div style="column-span:2; column-break-after:always;">
<table .... on left side ...>
...
</table>
</div>
<div>
<p ... on right side ...>
text...
</p>
</div>
</div>
Issue 1: column-span is ignored at all
Issue 2: table uses the entire width not only 2/3
Issue 3: each of the 3 columns displays rows overriding the content of the right neighbour columns (ignoring the column width)
Issue 4: table also displays rows in the 3rd column which only should display the content of "<p>"
To me it feels like a user (hey, that's me) problem, so hopefully one of you can point me in the right direction..
Thanks in advance
Jens