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