Skip to content

Instantly share code, notes, and snippets.

@snowman-repos
Created October 2, 2012 07:31
Show Gist options
  • Save snowman-repos/3817060 to your computer and use it in GitHub Desktop.
Save snowman-repos/3817060 to your computer and use it in GitHub Desktop.
CSS: Truncate Text with Elipses
.truncate {
overflow: hidden;
text-overflow: ellipsis;
width: 250px;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment