Word-wrap:
Normal|
Break-word
Parameters:
Normal:Allow content to top open specified container boundaries
Break-word:Content will be wrapped within the boundary. Word Wrapping (Word-break) also occurs if needed
Description:
Sets or retrieves whether a career change is broken when the current row exceeds the bounds of the specified container.
The corresponding script attribute is
WordWrap。 Please refer to the other bibliography I have written.
Example:
div {Word-wrap:break-word;}
Word-break: Normal | Break-all | Keep-all
Parameters:
Normal: allow line wrapping in words according to Asian and non-Asian language text rules
Break-all: The behavior is the same as in Asian languages. Also allows non-Asian-language text lines to be broken within any word. This value is appropriate for Asian text that contains some non-Asian text
Keep-all: same as normal for all non-Asian languages. For Chinese, Korean, Japanese, word break is not allowed. Suitable for non-Asian texts containing small amounts of Asian text
Description
Sets or retrieves the word wrapping behavior of text within an object. Especially when multiple languages are present.
For Chinese, break-all should be used.
The corresponding script attribute is wordbreak. Please refer to the other bibliography I have written.
Example:
div {word-break:break-all;}