Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: how to add three dots to text when overflow in html? #10229
    blankrajesh
    Participant

    Add all these.
    To make in single line.

    {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width:100px; /* some width */
    }
    

    To do in multi line which actually you asked.

    #content {
        overflow: hidden;
        width:100px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    

    working fiddle:
    https://jsfiddle.net/mishrarajesh/676jc7sa/

    Please note that this multiline code is supported only in web-kit browsers for now.

Viewing 1 post (of 1 total)