CSS word wrap property is used to break the long words and wrap onto the next line. This property is used to prevent overflow when an unbreakable string is too long to fit in the containing box.
CSS Word Wrap Values
Value | Description |
---|---|
normal | This property is used to break words only at allowed break points. |
break-word | It is used to break unbreakable words. |
initial | It is used to set this property to its default value. |
inherit | It inherits this property from its parent element. |