淘先锋技术网

首页 1 2 3 4 5 6 7

实现单行文本溢出

.div{
	width: 100px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

实现多行文本溢出

.div{
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}