美文网首页
webpack 打包之后,两行溢出没有效果

webpack 打包之后,两行溢出没有效果

作者: 文芬 | 来源:发表于2020-11-27 15:28 被阅读0次

    原因:发现-webkit-box-orient:vertical;并未设置成功
    解决:-webkit-box-orient: vertical; 加上注释包裹

    .item-title {
        overflow: hidden;
        word-break: break-all;
        text-overflow: ellipsis;
        display: -webkit-box;
        /*! autoprefixer: off */
        -webkit-box-orient: vertical;
        /* autoprefixer: on */
        -webkit-line-clamp: 2;
    }  
    

    相关文章

      网友评论

          本文标题:webpack 打包之后,两行溢出没有效果

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