Created
June 14, 2018 13:56
-
-
Save solid-pixel/ce0b0b17e5ada5c84406e59a871e838c to your computer and use it in GitHub Desktop.
Limit text lenght to N lines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.giveMeEllipsis { | |
overflow: hidden; | |
text-overflow: ellipsis; | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-line-clamp: N; /* number of lines to show */ | |
line-height: X; /* fallback */ | |
max-height: X*N; /* fallback */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment