Forum How do I...?

Is there a way to add extra pages?

suehpec
We are trying to reach a signature in our book by placing extra blank pages at the beginning of certain sections. I can achieve this with CSS (page-break-before: always or right) on certain tags but is there anyway to add this in the HTML code in Prince?

This is what the code looks like now.

<div class="ata"
<div class="titlepage">
<h1 class="float-title">About the Author</h1>
<h1 class="title">About the Author</h1>
<p>author text</p>
</div>
</div>

Thank you, any help is appreciated
mikeday
Do you mean something like this:
<div style="page-break-before: always"></div>
<div style="page-break-before: always"></div>
<div style="page-break-before: always"></div>
<div style="page-break-before: always"></div>
<div style="page-break-before: always"></div>

Or do you need to determine the number of extra pages to add dynamically?