Any CSS Guru ? How to limit the height of lines in table rows?

        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;

Though this is for webkit-browsers (Chrome, Safari), it also worked in Firefox.

2 Likes