多行文字溢出显示省略号
多行文本溢出隐藏(有详细的解释):https://www.html.cn/archives/5206/
单行文字溢出css:
overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
多行文字溢出省略号显示css:
overflow : hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;