Automatic table line feed:
When the numbers and English letters are used, the TD in the table will be extended and the line feed will not automatically break. It can be used in full-width mode.
Solution:
Add <TD style = "word-break: Break-all">
When using tables for web page formatting, it can be used normally. Sometimes you may encounter continuous English words or a bunch of exclamation points (!!!) The phenomenon of opening up webpages :(
To sum up, as long as the following sentence is defined in CSS, the website that can be protected will no longer be opened.
Table {table-layout: fixed ;}
TD (Word-break: Break-all; Word-wrap: Break-word ;)
Note:
1. The first table {table-layout: fixed;}. This style can be included in the table !!! Automatically wrap a line when a character such as an exclamation point (Exclamation point.
2. TD {word-break: Break-all}. This statement is usually used, but it will be supported in some special circumstances, therefore, you need to add the following sentence (Word-wrap: Break-word;) to solve the problem. This style can automatically wrap some consecutive English words in the table.