Limit text length to n lines using CSS

后端 未结 13 1218
滥情空心
滥情空心 2020-11-22 02:53

Is it possible to limit a text length to \"n\" lines using CSS (or cut it when overflows vertically).

text-overflow: ellipsis; only works for 1 line tex

13条回答
  •  庸人自扰
    2020-11-22 03:03

    following CSS class helped me in getting two line ellipsis.

      .two-line-ellipsis {
            padding-left:2vw;
            text-overflow: ellipsis;
            overflow: hidden;
            width: 325px;
            line-height: 25px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            padding-top: 15px;
        }
    

提交回复
热议问题