Skip to content

Instantly share code, notes, and snippets.

@jpgls
Created August 14, 2014 22:40
Show Gist options
  • Save jpgls/702256e7acff609dcbf4 to your computer and use it in GitHub Desktop.
Save jpgls/702256e7acff609dcbf4 to your computer and use it in GitHub Desktop.
CSS Ellipsis - Single Line (standard)

CSS Ellipsis Rules

All of these rules need to be in place for CSS Ellipses to work:

.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