View Single Post
Old 08-22-2021, 09:51 AM   #36
MicroDrie
Connoisseur
MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.MicroDrie ought to be getting tired of karma fortunes by now.
 
Posts: 58
Karma: 438844
Join Date: Aug 2019
Device: PC, Linux Mint, Tablet, and Telephone
Quote:
Originally Posted by rsuchwani View Post
But the problem persists, orphan/hanging empty list markers on the following page in the content of the nested lists.
I wrote before that solving all problems at once is not going to work.

Let's first look if the orphan and windows behavior has something to do with print media setting.

For the screen media display, you specify the body an orphan and window value of 2 lines. No orphan and window value for print media is specified.

Code:
@media print {
  body {
    widows: 2;
    orphans: 2;
  }
}
What is the influence if a window and orphan setting is also defined for the print media?
MicroDrie is offline   Reply With Quote