Quote:
Originally Posted by Turtle91
in CSS:
body {widows:0}
or
p {widows:0}
Set the value to whatever number you want to allow.
The same goes for Orphans:
body {orphans:0}
|
Minor nit. 0 is not a valid value to widows and orphans since 0 is not a positive integer. Use 1 instead.
On a more practical note, some renderers treat the 0 as a invalid value and revert to their default 2 or 3.