淘先锋技术网

首页 1 2 3 4 5 6 7

css代码:

/* 文字溢出隐藏并显示省略号 */
text{
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp:2; /* 设置行数 */
	-webkit-box-orient:vertical;
}

效果:
在这里插入图片描述