css 文本两行显示,超出省略号表示
2019-03-19 本文已影响0人
吕保鑫
css
<style>
.text-overflow{
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
</style>