Skip to content

Instantly share code, notes, and snippets.

@dheysonalves
Created January 20, 2021 14:22
Show Gist options
  • Save dheysonalves/985cba366239d859c15f158cf8c2a088 to your computer and use it in GitHub Desktop.
Save dheysonalves/985cba366239d859c15f158cf8c2a088 to your computer and use it in GitHub Desktop.
How to create an ellipsis text with limit line size?
.text {
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