美文网首页
Css -think to write

Css -think to write

作者: smileJiuer | 来源:发表于2018-09-27 10:03 被阅读0次

    多行文本溢出处理


    单行文本溢出:

    overflow: hidden;

    text-overflow: ellipsis;

    white-space: nowrap;

    width: 100px;     //部分浏览器需要加

    多行文本溢出:

        1.webkit内核浏览器或移动端:

    overflow : hidden;

    text-overflow: ellipsis;

    display: -webkit-box;

    -webkit-line-clamp: 3;

    -webkit-box-orient: vertical;

        2.跨浏览器解决方案:

    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(ellipsis_bg.png) repeat-y; //ellipsis_bg.png为省略号的渐变图片

    }

    相关文章

      网友评论

          本文标题:Css -think to write

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