Quote:
Originally Posted by RbnJrg
Kobo Desktop? Who reads in Kobo Desktop nowadays? It's the worst desktop ereader, riddled with bugs. If that's your concern, forget about Kobo Desktop and use the solution Turtle91 gave you, forcing page-breaks with:
Code:
<p class="answer">Answer to question #x</p>
.answer {
page-break-after: always !important;
break-after: always !important;
-moz-column-break-after: always !important;
-webkit-column-break-after: always !important;
}
|
The correct CSS code for ePub is
Code:
.answer {
page-break-after: always;
}
You don't need !important. Also, ePub is not a browser so the other code is not needed/valid.