Quote:
Originally Posted by RbnJrg
Don't use "page-break-inside: avoid" but "page-break-after: avoid" with <h> tags. The easiest way to do that is to write in your css stylesheet the following:
Code:
h1, h2 {
page-break-after: avoid;
}
ADE (even ADE 2 and ADE 3) will respect that property but only for epub2 ebooks. Also ADE will respect orphans and widows properties but I don't know why ADE 4 — for epub3 ebooks— it doesn't respect those properties 
|
Thanks, I'll give this a try.