文字超出显示省略号
css约 102 字小于 1 分钟
单行文字超出
.text-overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
多行文字超出
.text-overflow {
overflow: hidden;
text-overflow: ellipsis;
display:-webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2; // 多少行进行换行
word-wrap: break-word;
}