This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
This is a really quick one and I'm writing this post mainly so that I can quickly find it in the future. Manuel Matuzović shared a "Today I learned" tweet the other day which completely blew my mind.
It shares the following CSS to truncate a paragraph after three lines.
p {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
-webkit-box
? -webkit-line-clamp
? What?
I've never heard of these CSS properties. I definitely have to learn more about these in the near future. If you want to read more about this Topic Manuel also shared this article.
You have to be careful though, the support of line-clamp
is not that great today (Chrome, Safari, Opera) but hey... that's already something.
Reply to Stefan
This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis
Stefan Judis | Sciencx (2018-03-01T23:00:00+00:00) Overflow ellipsis after x lines (#tilPost). Retrieved from https://www.scien.cx/2018/03/01/overflow-ellipsis-after-x-lines-tilpost/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.