taro 小程序 css 多行隐藏

发布于:2020-09-25 16:08:40 更新于:2021-09-02 10:09:50

taro 小程序 css 多行隐藏

word-break: break-all;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
box-orient: vertical;
/* 必须保留,autoprefixer 会自动删除过时元素 */
/* autoprefixer: off */
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;

评论 0

还没有评论,来抢沙发吧~