多行文本超出隐藏正常写法为:
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
但是在taro2编译/打包的时候会少了 -webkit-box-orient: vertical; 这一行
所以需要加上
/* !autoprefixer: off/ // 这个地方没有感叹号实测会出现编译有效,打包无效
-webkit-box-orient: vertical;
/autoprefixer: on */
编译的时候跳过这一行
最终代码:
display: -webkit-box;
-webkit-line-clamp: 3;
/*! autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
overflow: hidden;
text-overflow: ellipsis;