CSS Word-Break Property

CSS 1

CSS 2

CSS 3

No No Yes

Description

This property controls the line breaking behaviour within words. It is especially useful in cases where multiple languages are used within an element.

Syntax

word-break: [value];

Possible values

  • normal
  • keep-all
  • loose
  • break-strict
  • break-all

Initial Value

Normal

Applies To

All elements

Inherited

Yes

Media

Visual

Example

div {
  word-break: keep-all;
}


View All CSS Properties