(1)设置文字行数为2行(多行显示)
小程序中单位为rpx
.text2{
width: 395rpx;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /*两行,超出为省略号*/
-webkit-box-orient: vertical;
align-content: center;
font-size: 28rpx;
color: #666666;
line-height: 40rpx;
margin-top: 15rpx;
}
效果图如下:
(1)单行显示,超出为省略号.
text2{
width: 395rpx;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1; /*显示一行,超出为省略号*/
-webkit-box-orient: vertical;
align-content: center;
font-size: 28rpx;
color: #666666;
line-height: 40rpx;
margin-top: 15rpx;
}