I have found out how to set the start page number to a value from the document:
body {
counter-reset:page attr(startpage);
}
When this startpage value is an even number, I want the second page to use the @page:right rules in my css, but currently it assumes that the first page is always a right page, using the page:left for odd pages. Can this behavior be changed somehow?
body {
counter-reset:page attr(startpage);
}
When this startpage value is an even number, I want the second page to use the @page:right rules in my css, but currently it assumes that the first page is always a right page, using the page:left for odd pages. Can this behavior be changed somehow?