Css多行显示省略号

overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;

单行:
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
width:100px;

你可能感兴趣的:(Css多行显示省略号)