美文网首页
超出文字省略号

超出文字省略号

作者: Maggie_77 | 来源:发表于2017-04-10 11:49 被阅读0次
    //单行:
    div{
        white-space: no-wrap;
        overflow:hidden;  
        text-overflow:ellipsis;
     }
    
    //多行(两行为例):
    div{
        display: -webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;  
     }
    

    相关文章

      网友评论

          本文标题:超出文字省略号

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