美文网首页
vue css多行省略号打包出错

vue css多行省略号打包出错

作者: 从前慢pearl | 来源:发表于2021-06-15 15:01 被阅读0次

    -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 */

    相关文章

      网友评论

          本文标题:vue css多行省略号打包出错

          本文链接:https://www.haomeiwen.com/subject/oguzeltx.html