Multiline Ellipsis CSS

By Forrest Smith - Drempd.com

Use this, seems to work pretty well. Note, that you don't want to add any padding on the target element, otherwise it will show text beyond the overflow:

.blog-tile-excerpt{
   display: -webkit-box;
   -webkit-line-clamp: 3;
   -webkit-box-orient: vertical;
   overflow: hidden;
}