微信小程序 解决 view 文字 过多 溢出的问题,超过行数后隐藏显示省略号

多行文本

.note_item text {
	display: -webkit-box;
	font-size: 28rpx;
	color: #000000;
	line-height: 40rpx;
	word-break: break-all;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
}

单行文本

.note2_item text {
	display: block;
	font-size: 28rpx;
	color: #000000;
	line-height: 40rpx;
	height: 120rpx;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

tip:必须要有宽度

posted on 2019-09-27 11:45  anyw3c  阅读(6344)  评论(0编辑  收藏  举报