Skip to content

Instantly share code, notes, and snippets.

@tieutantan
Created January 6, 2017 10:34
Show Gist options
  • Save tieutantan/4d7f3c3cb81c318e4d8bcbf102074887 to your computer and use it in GitHub Desktop.
Save tieutantan/4d7f3c3cb81c318e4d8bcbf102074887 to your computer and use it in GitHub Desktop.
Truncate text by HTML, CSS
.truncate_line_text {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.truncate_paragraph_text {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment