Skip to content

Instantly share code, notes, and snippets.

@minhanhhere
Created August 18, 2017 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save minhanhhere/3ec8c3c99633c25a4ee6a22b79509f5c to your computer and use it in GitHub Desktop.
Save minhanhhere/3ec8c3c99633c25a4ee6a22b79509f5c to your computer and use it in GitHub Desktop.
My CSS Snippets
.text-2-lines {
word-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
line-height: 1.5em; //fallback
max-height: 3em; //fallback
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.text-1-lines {
word-wrap: break-word;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment