lang="en" attribute to the <h3> using Webflow’s Custom Attributes panel. h3 { hyphens: auto; overflow-wrap: break-word; }. You're trying to enable automatic hyphenation for long words in the “NDIS Services” section, but applying a CSS rule to the <h3> hasn't worked. Here's how to correctly enable hyphenation in Webflow.
To allow automatic hyphenation, you need to apply the following CSS properties:
hyphens: auto;overflow-wrap: break-word; (or legacy word-wrap: break-word; for broader coverage)lang="en")
<h3> or text element used in the NDIS Services section.langen (or your desired language code)
h3 { hyphens: auto; overflow-wrap: break-word; }
.hyphenate) on your headings and target that in your CSS instead:
.hyphenate { hyphens: auto; overflow-wrap: break-word; }
hyphens: auto, but Chrome may require enabling the experimental “Hyphenation” feature.
To automatically hyphenate long words in your NDIS Services section, apply hyphens: auto and overflow-wrap: break-word via custom CSS, and make sure you assign a correct language attribute like lang="en" to the element. This ensures proper hyphenation behavior across browsers that support it.