I used these css properties for line ellipsis-
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
here -webkit-line-clamp: 3;
is the number of line(3 lines) after which ... shows.