hyphens: auto; word-break: break-word;
) in Page or Site Settings.lang
attribute for hyphenation support.To ensure long words or links break correctly on mobile in Webflow, you can enable automatic hyphenation using built-in text styling and a custom CSS tweak.
Webflow doesn't yet offer direct controls for full hyphenation, so you need to add a small custom CSS rule:
Go to your Page Settings or Site Settings › Custom Code.
In the Inside tag section, paste the following CSS:
* { hyphens: auto; word-break: break-word; overflow-wrap: break-word; }
This enables automatic hyphenation and ensures long strings (like URLs) break without layout issues.
Note: Hyphenation only works on certain languages (like English, German, etc.) and is browser-dependent.
"en"
for English or the appropriate language code.lang
en
To enable automatic hyphenation in Webflow on mobile, use normal white space, apply custom CSS with hyphens: auto
, and set the lang attribute for proper browser support. This prevents text overflow without requiring manual formatting.