<Table id = "Table1" style = "table-layout: fixed; Word-break: Break-all" border = "1">
Or in the script:
This. style. wordbreak = Break-all
Set or obtain the following value for string:
Normal
Default value. You can return rows from each word.
Break-all
The row is returned when the column width is exceeded, regardless of the position.
Keep-all
Return of Chinese, Japanese, and Korean is not allowed. This function is similar to the non-Asian version of "normal.
The above does not seem to work.Word-wrap
Word-wrap controls line breaks.
When break-word is used, a line break is forced. There is no problem with Chinese and no problem with English statements. However, long strings do not work in English.
Break-word controls whether words are disconnected.
Normal is the default condition, and English words are not separated.
Break-all, which is a broken word. When a word reaches the boundary, the next letter automatically goes to the next line. It mainly solves the problem of long strings in English.
Keep-All refers to continuous Words in Chinese, Japanese, and Korean. That is to say, in this case, word-wrap is not used, and the Chinese text will not wrap. (The English statement is normal .)
To sum up, use nowrap to force text not to wrap, and then use style ="Table-layout: fixed; Word-wrap: Break-word; overflow: hidden;"Make sure the table is not opened.