h5 打包后效果失效

在 多行省略文本时 发现-webkit-line-clamp: 2;效果失效
出现布局问题

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        overflow: hidden;
        -webkit-box-orient: vertical;

在这里插入图片描述

解决方式

通过/*! autoprefixer: off */ /*! autoprefixer: on */包裹住样式即可


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

猜你喜欢

转载自blog.csdn.net/IT_iosers/article/details/119422466