Hello!
I'm using page names in order to have different page numbering for my front matter and regular content. i.e.
I define the front matter with a div, i.e.
with CSS:
Whenever I do this, I get an extra page break. Am I missing something obvious (most likely)? Or is this a bug?
Full test HTML:
https://gist.github.com/4146422
Renders: test.pdf
I'm using page names in order to have different page numbering for my front matter and regular content. i.e.
@page :left {
@bottom-left {
content: counter(page);
}
}
@page frontmatter :left {
@bottom-left {
content: counter(page,lower-roman);
}
}
I define the front matter with a div, i.e.
<div id ="frontmatter">
<h1>Front Matter</h1>
<p>
This is page 1.
</p>
</div>
with CSS:
div#frontmatter {
page: frontmatter;
}
Whenever I do this, I get an extra page break. Am I missing something obvious (most likely)? Or is this a bug?
Full test HTML:
https://gist.github.com/4146422
Renders: test.pdf