单行文本溢出隐藏web
p{
width:200px;spa
white-space: nowrap;ip
overflow: hidden;it
text-overflow: ellipsis;
}webkit
指定行数、多行溢出隐藏(兼容ie7)
div {lamp
line-height:20px;兼容
heigh:60px; //这里是行高的倍数di
overflow : hidden;display
text-overflow: ellipsis;ps
display: -webkit-box;
-webkit-line-clamp: 3; // 这里写显示的行数
-webkit-box-orient: vertical;}