Skip to content

Instantly share code, notes, and snippets.

@romainavalle
Last active June 10, 2022 09:53
Show Gist options
  • Save romainavalle/272f3464dc2912b8ca2a14aa8e54f0f8 to your computer and use it in GitHub Desktop.
Save romainavalle/272f3464dc2912b8ca2a14aa8e54f0f8 to your computer and use it in GitHub Desktop.
scss line ellipsis
.line-ellipsis{
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2; /* number of lines to show */
line-clamp: 2;
-webkit-box-orient: vertical;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment