It would be great to specify the minimum number of words on a line.
To stop this sort of thing happening you currently need some sort of markup e.g. between the last words or a span with a white space directive
SPICED CAULIFLOWER WITH TOASTED COCONUT AND RED
LENTILS
Setting word widows to 3 would get:
SPICED CAULIFLOWER WITH TOASTED COCONUT
AND RED LENTILS
Markup solutions don't work well when we reference the content with e.g. target-content:
p.toc2 a:before {
content:target-content(attr(href));
word-widows:4
}
to get a more balanced entry for our contents page:
SPICED CAULIFLOWER WITH TOASTED
COCONUT AND RED LENTILS
Tom
To stop this sort of thing happening you currently need some sort of markup e.g. between the last words or a span with a white space directive
SPICED CAULIFLOWER WITH TOASTED COCONUT AND RED
LENTILS
Setting word widows to 3 would get:
SPICED CAULIFLOWER WITH TOASTED COCONUT
AND RED LENTILS
Markup solutions don't work well when we reference the content with e.g. target-content:
p.toc2 a:before {
content:target-content(attr(href));
word-widows:4
}
to get a more balanced entry for our contents page:
SPICED CAULIFLOWER WITH TOASTED
COCONUT AND RED LENTILS
Tom