微信小程序 - 单行/多行文本省略号

多行文本省略号

.box{
	display: -webkit-box;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
	white-space: normal !important;
	-webkit-line-clamp: 3;	/*  行数*/
	-webkit-box-orient: vertical;
}

单行文本省略号

.text {
    font-size: 38rpx;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
}

你可能感兴趣的:(微信小程序)