美文网首页
css 文本两行显示,超出省略号表示

css 文本两行显示,超出省略号表示

作者: 吕保鑫 | 来源:发表于2019-03-19 13:28 被阅读0次
    css
    <style>
    .text-overflow{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    }
    </style>
    

    相关文章

      网友评论

          本文标题:css 文本两行显示,超出省略号表示

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