單行文本溢出隱藏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;}