Quote:
Originally Posted by rsuchwani
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?