1. 程式人生 > >前端樣式 實現兩行 超出部分...顯示

前端樣式 實現兩行 超出部分...顯示

實現兩行 超出部分…顯示

  1. 純css 只對webkit核心瀏覽器有效
line-height:37rpx;
overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:block-axis;
  1. js
{{item.name.length>20?item.name.slice(0,20)+'...':item.name}}