Skip to content

Instantly share code, notes, and snippets.

@solid-pixel
Created June 14, 2018 13:56
Show Gist options
  • Save solid-pixel/ce0b0b17e5ada5c84406e59a871e838c to your computer and use it in GitHub Desktop.
Save solid-pixel/ce0b0b17e5ada5c84406e59a871e838c to your computer and use it in GitHub Desktop.
Limit text lenght to N lines
.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