@Santosh , to expand on @Bogdan 's suggestion... you could turn that into a token so you don't have to look it up each time. I've written those few lines hunreds of times and still forget.
It’s more flexible than text-overflow: ellipsis with nowrap and works well for multi-line text. display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
text-overflow: ellipsis;