Use the following css snippets for better text wrapping. More info:
- https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/text-wrap
- https://developer.chrome.com/blog/css-text-wrap-pretty
For body text
This prevents orphans (single words) on the last line. More info:
text-wrap: pretty;
Code language: HTTP (http)
For headings
Does not prevent orphans, but creates a harmonious text block
text-wrap: balance;
Code language: HTTP (http)