Text overflow ellipsis

Multi-line:

.multi-line{
    -webkit-box-orient: vertical;
    -webkit-line-clamp:3;
    overflow: hidden;
    text-overflow:ellipsis;
}

Single line:

.one-line{
    overflow: hidden;
    white-space: nowrap;
    text-overflow:ellipsis;
}

Guess you like

Origin blog.csdn.net/qq_27851967/article/details/90077314