How to use the line-clamp CSS property to limit text to a specific number of lines.
.text {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 3; /* number of lines to show */
-webkit-box-orient: vertical;
}
See this Stackoverflow post for more information.