文本超长溢出省略号

单行
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}

多行
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
}

origin

你可能感兴趣的:(文本超长溢出省略号)