hyphens: auto;
and overflow-wrap: break-word;
via custom CSS targeting the correct H3 element in Webflow.lang="en"
on your HTML to enable proper hyphenation rules.You're trying to automatically hyphenate long words in the “NDIS Services” section of your Webflow homepage, but applying a CSS rule (like on an H3 element) hasn't worked. Here's how to ensure hyphenation works correctly in Webflow.
hyphens: auto;
overflow-wrap: break-word;
(as fallback)custom code, and target the class via custom CSS.
Example CSS for targeting an H3 in custom code:
h3 { hyphens: auto; overflow-wrap: break-word;}
<html lang="en">
To auto-hyphenate long words in the “NDIS Services” H3 section:
hyphens: auto;
and overflow-wrap: break-word;
in custom CSS.lang="en"
) on your site or page.Following these steps should properly apply auto-hyphenation to your headings.