Text Truncating
Because sometimes less is more (and because your design would break otherwise). 📏
Simple Text Truncating
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Multi-line Text Truncating
For those who allow more than one line but still want to set boundaries.
.truncate-3 {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}