单行:

.text{

font-size:28rpx;
height:70rpx;
line-height:35rpx;
 
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow:ellipsis;

}

 

多行:

.text{

font-size:28rpx;
height:70rpx;
line-height:35rpx;
 
display: -webkit-box;
word-break: break-all;
-webkit-box-orient: vertical;
-webkit-line-clamp:2;   //行数为2
overflow: hidden;
text-overflow:ellipsis;

}

 

相关文章:

  • 2022-01-02
  • 2022-01-05
  • 2021-12-12
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2021-12-25
  • 2021-08-30
猜你喜欢
  • 2021-08-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
相关资源
相似解决方案