I'm getting some really odd feedback from a client that we're developing a "slightly complex" eBook for (epub ver2). It's got some images in and some boxes, nothing funky, and all stuff we've done before.
But they keep saying that chunks of the content are MISSING when looking on iBooks (Mac).
eg: One chapter has endorsements and they wanted to make sure that the name stays with the quote, so we wrapped it in the div with page-break-inside:avoid
so...
Code:
<div class = "group">
<p>Great book!</p>
<p>- A reviewer</p>
</div>
<div class = "group">
<p>Changed my life!</p>
<p>- Another reviewer</p
</div>
:
etc
CSS:
.group{
page-break-inside:avoid;
}
Looks just fine on ADE, Kindle Sim (mobi export) and in iBooks on my (old) iPad... cant figure out what's going on here.
Also, they say that other chunks are missing after forced page-breaks.
Code:
<p>yadda yadda</>
<div style='page-break-before:always;'></div>
<p>start of new page</p>
this has always worked... or at least degraded gracefullyand just not done a page-break.