css 从长话,字符串换行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 从长话,字符串换行相关的知识,希望对你有一定的参考价值。
/*add max-width from table columns */
/* add this styles from wysywig window */
.overflow-long-text {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
.overflow-long-text p {
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
/*from one string*/
.overflow-long-string {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-word;
}
以上是关于css 从长话,字符串换行的主要内容,如果未能解决你的问题,请参考以下文章
[js] 处理字符串换行造成的json解析失败
Delphi字符串换行
java后台获取行符前台实现字符串换行
vue.js字符串换行问题
yml 字符串换行问题
前端通过后端传过来的'\n' ,'<br/>'等字符串换行失败问题