Skip to content

Instantly share code, notes, and snippets.

@klarstil
Last active December 15, 2015 22:59
Show Gist options
  • Save klarstil/5336528 to your computer and use it in GitHub Desktop.
Save klarstil/5336528 to your computer and use it in GitHub Desktop.
Truncate text using CSS
.is-truncate {
width: 250px; /** Adjust width to your needs */
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment