美文网首页
css3实现文本单行/多行超出省略号

css3实现文本单行/多行超出省略号

作者: 浪浪山小妖_ | 来源:发表于2019-06-11 16:52 被阅读0次

    我们知道编写正常状态超出文本用overflow: hidden;
    那么单行和多行如何呢?下面说说

    1.单行超出省略

    .box{
        width:100px;
        height:40px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    • 效果如下:


      image.png

    2.多行超出省略

    .box{
        width:100px;
        height:auto;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;  /*3行出现省略号*/
        -webkit-box-orient: vertical;
    }
    
    • 效果如下:


      image.png

    --by Affandi ⊙▽⊙

    相关文章

      网友评论

          本文标题:css3实现文本单行/多行超出省略号

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