css 多行溢出显示省略号失效


white-space: normal;
display: -webkit-box;
-webkit-box-orient: vertical;
/* autoprefixer: off */
-webkit-line-clamp: 2;    //只显示两行
/*autoprefixer: on */
overflow: hidden;

只需要加上

/* autoprefixer: off */

/*autoprefixer: on */

相关