Skip to content

Instantly share code, notes, and snippets.

@marcusshepp
Created May 26, 2016 19:27
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 marcusshepp/2f80a2ee6dd1c9014a8de60d02d4d7c9 to your computer and use it in GitHub Desktop.
Save marcusshepp/2f80a2ee6dd1c9014a8de60d02d4d7c9 to your computer and use it in GitHub Desktop.
css truncate text with ellipsis
.foo{
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