微信小程序 解决 view 文字 过多 溢出的问题,超过行数后隐藏显示省略号
时间:2019-09-27 12:27:20
收藏:0
阅读:133
多行文本
.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;
}
评论(0)