On webbrowsers, we use header/footer with
@media print
{
header { display: table-header-group; }
main { display: table-row-group; }
footer { display: table-footer-group; }
}
The same document converted with PrinceXML need something like
@media print
{
header { flow: static(header); }
footer { flow: static(footer); }
}
Is it possible to specify a special PrinceXML media query to get both function in the same *.css?
@media print
{
header { display: table-header-group; }
main { display: table-row-group; }
footer { display: table-footer-group; }
}
The same document converted with PrinceXML need something like
@media print
{
header { flow: static(header); }
footer { flow: static(footer); }
}
Is it possible to specify a special PrinceXML media query to get both function in the same *.css?
