html设置超过两行隐藏

.item .item-cont h4{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:2;  /* 设置行数 */
	-webkit-box-orient: vertical;
}

你可能感兴趣的:(CSS)