美文网首页程序员
文本超长溢出省略号

文本超长溢出省略号

作者: _Charles | 来源:发表于2017-12-14 20:07 被阅读0次

    单行
    .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    }

    多行
    .ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    }

    origin

    相关文章

      网友评论

        本文标题:文本超长溢出省略号

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