优点:不用设置死两行文字的高度,可以适配所有页面,不会出现行高不够的情况。
缺点:代码记不住,每次都要翻博客……
css代码:
<style>
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
</style>
效果:
网友评论