The page design outputs a line feed in both Chinese and English. Today, we have experienced a disgusting page dislocation. The reason is very simple: when the page outputs Chinese characters, if the area width is not enough, it will automatically wrap the line. However, English letters are not allowed, that is, today, we have experienced a disgusting page dislocation. The reason is very simple. when the page outputs Chinese characters, if the area width is insufficient, it will automatically wrap the line. However, English letters are not allowed, that is to say, you output a string of characters similar to "aaaaaaaaaaaa". The Page considers this as a word and cannot be disconnected.
And the area is only 3 characters in width, the page will be misplaced. If you change to "aaa", you can use a line break because the page regards them as four words.
To forcibly wrap a line, you only need to add word-wrap: break-word to the CSS design;/* forcibly wrap */.
# Test {
......;
......;
Word-wrap: break-word;/* Force line feed */
}
...