How to truncate multi-line string with Pure CSS
It is easy to truncate a single-line text.
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Multi-line Tuncation
However, what if you want to truncate after some lines? The CSS -webkit-line-clamp property comes in handy. It...
temitope.hashnode.dev1 min read