美文网首页
多行文本省略溢出内容 - Hide Overflow Conte

多行文本省略溢出内容 - Hide Overflow Conte

作者: YichengYe | 来源:发表于2018-06-28 03:42 被阅读0次
    div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1rem;
    height: 3rem; /* 3 times line height */
    }
    
    p {
        position: relative;
        line-height: 1.4em; /* 3 times the line-height to show 3 lines */
        height: 4.2em;
        overflow: hidden;
    }
    p::after {
        content: "...";
        font-weight: bold;
        position: absolute;
        bottom: 0;
        right: 0;
        padding: 0 20px 1px 45px;
        background: url(http://css88.b0.upaiyun.com/css88/2014/09/ellipsis_bg.png) repeat-y;
    }
    

    相关文章

      网友评论

          本文标题:多行文本省略溢出内容 - Hide Overflow Conte

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