hyphens: auto, word-break: break-word, and overflow-wrap: break-word via Embed component or Page Settings.To automatically enable hyphenation for long words or URLs in Webflow—so they're wrapped cleanly on mobile—you'll need to tweak the CSS settings using built-in tools and, if necessary, minimal custom code.
Webflow doesn’t expose the full hyphenation control via the UI, but you can start with these steps:
To fully support automatic hyphenation, add this minimal CSS using either:
<style> tag.
Here’s what to add (do not include raw code blocks, just the style behavior):
hyphens: auto rule to the target text class. Also include overflow-wrap: break-word; and word-break: break-word; for better compatibility.
hyphens: auto;overflow-wrap: break-word;word-break: break-word;-webkit-hyphens: auto; for Safari
Ensure the browser supports it and that a valid language is applied.
Links or unbreakable strings (like URLs) may still overflow. To break long links:
word-break: break-word; and overflow-wrap: break-word; to link elements..rich-text a).
To auto-hyphenate and wrap long words or links in Webflow:
hyphens: auto and break-word behaviors using an embed or page-wide style.
This avoids manual hyphenation or multiple text blocks while keeping your layout responsive.