欢迎来到DIVCSS5查找CSS资料与学习DIV CSS布局技术!
CSS多行文本超出显示省略号
 
css代码
 
.company {
 
width: 245px;
 
margin-bottom: 0;
 
text-overflow: -o-ellipsis-lastline;
 
overflow: hidden;
 
text-overflow: ellipsis;
 
display: -webkit-box;
 
-webkit-line-clamp: 2;
 
line-clamp: 2;
 
-webkit-box-orient: vertical;
 
}

如需转载,请注明文章出处和来源网址:http://www.divcss5.com/html/h64738.shtml