0
{
   text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

I have used the above code..but it is not working as I required

1 Answers1

1

try this

{
       max-width: 100%;
        height: 30px;
        font-size: 14px;
        line-height: 15px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
}
Yushin
  • 1,684
  • 3
  • 20
  • 36