Is there any support for the CSS3 running header styles? Example:
- Code: Select all
<html>
<head>
<style type="text/css">
@page {
@top-left { content: element(leftHeader) };
}
div.leftHeader { position: running(leftHeader); }
</style>
</head>
<body>
<div class="leftHeader">
<p>Header Text</p>
</div>
<div>
<p>Page content here....</p>
</div>
</body>
</html>
Flying saucer supports this - the header element is repeated at the top of every page when exported to PDF, but not with DOCX.
Thanks,
Steve