单行文字实现2:
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
多行文字实现(有浏览器兼容问题):
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
display: -webkit-box;
我的个人博客地址:https://www.junsom.com/
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
overflow: hidden;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
display: -webkit-box;
我的个人博客地址:https://www.junsom.com/