CSS Overflow Wrap Generator
Control word wrapping behavior for long text
Presets
Target Element
Overflow Wrap
Controls whether the browser may break at otherwise disallowed points within a line
Unbreakable words may be broken at arbitrary points
Additional Properties
Live Preview
This paragraph contains some verylongwordsthatcannotbebrokennormally and may cause layout issues.
URLs like https://example.com/very/long/path/to/some/resource?with=query¶meters=here can overflow their containers.
Email addresses: verylongemailaddressfordemonstration@extremelylongdomainname.com
File paths: /home/user/documents/projects/very-long-project-name/src/components/
Technical identifiers: SuperLongClassNameWithManyWordsAndCamelCase
Overflow Wrap Comparison
normal
https://example.com/very/long/path/here
break-word
https://example.com/very/long/path/here
anywhere
https://example.com/very/long/path/here
Generated CSS
.text-content {
overflow-wrap: break-word;
word-wrap: break-word; /* Legacy */
}