Skip to content

Instantly share code, notes, and snippets.

@russo97
Created July 19, 2021 18:26
Show Gist options
  • Save russo97/c3cedef5c3637faaaca66cdbec25501f to your computer and use it in GitHub Desktop.
Save russo97/c3cedef5c3637faaaca66cdbec25501f to your computer and use it in GitHub Desktop.
Text line limit with CSS
.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