Confirming what @davidfor has stated, I have used the following code in two novels which works well reading on my Libra2...
Code:
.nopagebreak {
page-break-inside: avoid;
margin-left: inherit;
margin-right: inherit;
}
Then in the body of the text I use...
Quote:
<div class="nopagebreak">
<h3 id="toc_1">1b</h3>
<p>This is the first paragraph of the sub-chapter. This paragraph should stick to the sub-heading</p>
</div>
|