Skip to content

Instantly share code, notes, and snippets.

@parrfolio
Created August 23, 2012 20:14
Show Gist options
  • Save parrfolio/3441089 to your computer and use it in GitHub Desktop.
Save parrfolio/3441089 to your computer and use it in GitHub Desktop.
Mult-Line Ellipsis
.giveMeEllipsis {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
-webkit-box-orient: vertical;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment