文本超出隐藏
参考:https://blog.csdn.net/weixin_43131046/article/details/114397849
单行
//不换行 white-space: nowrap; //超出隐藏 overflow: hidden; //超出部分用...代替 text-overflow: ellipsis;
多行超出隐藏有省略号:
display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; overflow: hidden; text-overflow: ellipsis;
英文:
word-break:break-all //或者 word-wrap:break-word