Quote:
Originally Posted by Trane
IOW, I don't want more HTML pages generated... I just want page breaks at certain points for reading ease, to create a little break and white space so the reader has to turn the page to get to the next section.
|
All you would have to do is create a class and give it the "page-break-before: always" property.
Something like this:
Code:
<p class="newsection">Joey walked off into the jungle.</p>
and this CSS:
Code:
p.newsection {
page-break-before: always;
}
But keep in mind that not all ereaders respect this property, so it might not work on all reading devices.