草庐IT

hl-reserved

全部标签

CSS 英文、中文强制换行与不换行的代码

1.word-break:break-all;只对英文起作用,以字母作为换行依据2.word-wrap:break-word;只对英文起作用,以单词作为换行依据3.white-space:pre-wrap;只对中文起作用,强制换行4.white-space:nowrap;强制不换行,都起作用5.white-space:nowrap;overflow:hidden;text-overflow:ellipsis;不换行,超出部分隐藏且以省略号形式出现注意:一定要指定容器的宽度(width),否则没用。实例.p1{word-break:break-all;width:150px;}.p2{word-

CSS 英文、中文强制换行与不换行的代码

1.word-break:break-all;只对英文起作用,以字母作为换行依据2.word-wrap:break-word;只对英文起作用,以单词作为换行依据3.white-space:pre-wrap;只对中文起作用,强制换行4.white-space:nowrap;强制不换行,都起作用5.white-space:nowrap;overflow:hidden;text-overflow:ellipsis;不换行,超出部分隐藏且以省略号形式出现注意:一定要指定容器的宽度(width),否则没用。实例.p1{word-break:break-all;width:150px;}.p2{word-