微信小程序中 单行和多行文本,超出显示省略号 css
1 .remcommendScroll view text{ 2 font-size: 28rpx; 3 color: #333; 4 /* 一行省略号 */ 5 /* display: block; 6 white-space: nowrap; 7 overflow: hidden; 8 text-overflow: ellipsis; */ 9 /* 多行省略 */ 10 display: -webkit-box; 11 -webkit-box-orient: vertical;/*设置对齐模式*/ 12 -webkit-line-clamp: 2; /*设置显示的行数*/ 13 overflow: hidden; 14 text-overflow: ellipsis; 15 16 }