单行
.box{
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
多行
.box2{
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp:3;
overflow: hidden;
}
兼容
.box3{
position: relative;
line-height: 20px;
max-height: 40px;
overflow: hidden;
}
.box3::after{
content: "...";
position: absolute;
bottom: 0;
right: 0;
padding-left: 40px;
background: -webkit-linear-gradient(left,transparent,#fff 55%);
background: -o-linear-gradient(right,transparent,#fff 55%);
background: -moz-linear-gradient(right,transparent,#fff 55%);
background: linear-gradient(to right,transparent,#fff 55%);
}
效果如下