Himas Rafeek
Posted on: 2 years ago
CSS

Webkit lastline truncate

Truncate the multiline text. Webkit Property.


                                          .Ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    /* number of lines to show */    -webkit-box-orient: vertical;
}