强制换行 word-break: break-all; 只对英文起作用,以字母作为换行依据。 word-wrap: break-word; 只对英文起作用,以单词作为换行依据。 white-space: pre-wrap; 只对中文起作用,强制换行。
word-break: break-all;
word-wrap: break-word;
white-space: pre-wrap;
禁止换行 white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;