I have moved a table to the page header using:
But I am not able to set the colum widths. I have tried with and without table-layout: fixed; and with html or css widths in px or %. Nothing works.
I am using prince 13.5-1.
Any hints?
#header {
flow: static(header);
}
@page {
@top{
font-size: 10pt;
vertical-align: bottom;
content: flow(header);
}
}
But I am not able to set the colum widths. I have tried with and without table-layout: fixed; and with html or css widths in px or %. Nothing works.
<table border="1" cellpadding="0" cellspacing="0" id="header" style="table-layout: fixed; width: 100%;">
<tbody>
<tr>
<td align="left" style="width: 100px;"> Logo</td>
<td align="center">Title </td>
<td align="right" style="width: 200px;">right </td>
</tr>
</tbody>
</table>
I am using prince 13.5-1.
Any hints?