A possible bug in PrinceXML? Or just something I don't understand how to handle correctly?
Consider the following CSS:
The bottom-left margin box contains only "My".
However, this one works, and in all for corner margin boxes appears the full string:
Is it me, or is it Prince?
Commandline used:
I tested with different HTML inputs, and it does not depend on it.
Consider the following CSS:
@page { size: A4 landscape;
padding: 9pt;
margin: 18pt 18pt 18pt 18pt;
@bottom-left { content: "My Super-Duper Manual"; }
@bottom { content: string(paratitle); }
}
The bottom-left margin box contains only "My".
However, this one works, and in all for corner margin boxes appears the full string:
@page { size: A4 landscape;
padding: 9pt;
margin: 18pt 18pt 18pt 18pt;
@bottom-left { content: "My Super-Duper Manual"; }
@bottom-right { content: "My Super-Duper Manual"; }
@top-left { content: "My Super-Duper Manual"; }
@top-right { content: "My Super-Duper Manual"; }
@bottom { content: string(paratitle); }
}
Is it me, or is it Prince?
Commandline used:
prince -c my.css any-html-resource.html -o out.pdf
I tested with different HTML inputs, and it does not depend on it.