You are here: Reference > CSS > properties > line-break

line-break property

Browser support:
Specifies the line-breaking rules for Chinese, Japanese or Korean text.
This property is deprecated, use the word-break property instead.
JavaScript page for this property: lineBreak. You can find other example(s) there.

Possible values:

 One of the following values: 
normal
Default. Normal line-breaking rules are applied.
strict
Stricter line-breaking rules are enforced.
Default: normal.

Example HTML code 1:

This example shows how the line-break property should work:
<head>
    <style>
        .example {
            line-break: strict;
        }
    </style>
</head>
<body>
    <!-- The sky is as blue as blue can be.-->
    <span class="example">空はあくまでも青い。</span>
</body>
Did you find this example helpful? yes no

Supported by tags:

Related pages:

External links:

User Contributed Comments

Post Content

Post Content