line-break property
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:
Default. Normal line-breaking rules are applied. | |||||||
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?
|
Supported by tags:
address, blockQuote, body, center, dd, dir, div, dl, dt, fieldSet, form, H1, H2, H3, H4, H5, H6, html, isIndex, legend, li, listing, marquee, menu, ol, p, pre, table, textArea, tr, ul, xmp
Related pages:
External links:
User Contributed Comments