View Single Post
Old 11-13-2019, 11:43 AM   #22
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,834
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by Hitch View Post
You mean if you actually set the CSS on w/o, for a heading, it disables it, instead of enabling it? (Am I confused?)
That's right! All <h*> tags come by default with the properties "page-break-after: avoid" and "page-break-inside: avoid". So if you don't like them, then you need to set in the css stylesheet something like:

Code:
h1, h2, h3, h4, h5, h6 {
  orphans: 1;
  widows: 1;
}
But the good news is that you can use now <h*> tags for things you want to be together (not very academic but possible ). Of course, you'll have write more code yet for kf7.
RbnJrg is offline   Reply With Quote