Method One: First fix the table width, that is, give the table a width value (numeric, non-percentage)
Method Two: Force no line break
Div{//white-space: Do not wrap, normal default; nowrap forces all text to be displayed in the same line until the text ends or encounters a BR object white-space:nowrap;}
Method Three: Wrap line
div{Word-wrap:break-word;//word-break set forced line wrapping; text rules for normal Asian and non-Asian languages, allowing word wrapping word-break:normal;}
Method Four: Force English words to break
Div{word-break:break-all;}
Note:
The following sentence is defined in the CSS to prevent the page from being "stretched":
table{table-layout:fixed;} TD (Word-break:break-all; word-wrap:break-word;)
Prevents the table/layer from being "stretched" while ensuring that individual English words are not opened at the branch:
Table {Table-layout:fixed;word-wrap:break-word;}
div {Word-wrap:break-word;}