2 @page {
8
9 @top {
10 content: flow(header);
12 }
13 }
14
15 @page:first {
16
17 @top {
18 content: flow(firstpage);
19 }
20 }
I am using the CSS above for having a custom header on the first page
of my PDF...works as it should.
Now we have the requirement that the document should contain a title
page in front. So instead of @page:first I would need something
like @page:second or @page:(n-th).
Is there something?
8
9 @top {
10 content: flow(header);
12 }
13 }
14
15 @page:first {
16
17 @top {
18 content: flow(firstpage);
19 }
20 }
I am using the CSS above for having a custom header on the first page
of my PDF...works as it should.
Now we have the requirement that the document should contain a title
page in front. So instead of @page:first I would need something
like @page:second or @page:(n-th).
Is there something?