美文网首页
多行溢出隐藏省略号不显示问题

多行溢出隐藏省略号不显示问题

作者: williamslau | 来源:发表于2020-07-13 16:23 被阅读0次
    display: -webkit-box;
    /* autoprefixer: ignore next */
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    overflow: hidden;
    
    
    
    
              overflow:hidden; 
              text-overflow:ellipsis;
              display:-webkit-box;
              /* autoprefixer: off */
              -webkit-box-orient:vertical;
              /* autoprefixer: on */
              -webkit-line-clamp:2;

    相关文章

      网友评论

          本文标题:多行溢出隐藏省略号不显示问题

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