Skip to content

Instantly share code, notes, and snippets.

@vyspiansky
Created January 4, 2020 15:01
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 vyspiansky/ff72743c2478e73a70765a96a4629af6 to your computer and use it in GitHub Desktop.
Save vyspiansky/ff72743c2478e73a70765a96a4629af6 to your computer and use it in GitHub Desktop.
CSS: truncate string with ellipsis
.truncate {
width: 250px;
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