多行文字溢出显示省略号

多行文本溢出隐藏(有详细的解释):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;

  

posted @ 2020-01-20 14:23  塞巴斯酱  阅读(127)  评论(0编辑  收藏  举报