vue css多行省略号打包出错

-webkit-box-orient:vertical 在使用 webpack 打包的时候这段代码会被删除掉,原因是optimize-css-assets-webpack-plugin 这个插件的问题。

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

单行省略号:

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;

你可能感兴趣的:(vue css多行省略号打包出错)