css 超過2行 省略,...的形式展現的問題

1 可能都知道要用下面的屬性css

{
    overflow: hidden;
    text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp:2;
      -webkit-box-orient: vertical;
}

 可是 在react或者vue裏面可能會失效。vue

試一試 這樣 react

  overflow: hidden;
    text-overflow: ellipsis;
     display: -webkit-box;
     -webkit-line-clamp:2;
/* !autoprefixer: off */   
-webkit-box-orient: vertical;
/* !autoprefixer: on*/ 

  我這邊生效了,你呢。。 試試web

相關文章
相關標籤/搜索