Skip to content

Instantly share code, notes, and snippets.

@dacur
Created July 14, 2014 19:46
Show Gist options
  • Select an option

  • Save dacur/d323153dfa97341a62af to your computer and use it in GitHub Desktop.

Select an option

Save dacur/d323153dfa97341a62af to your computer and use it in GitHub Desktop.
Truncating text / handling overflowing text. Instead of pushing overflowing text into surrounding areas, it will be truncated and end with "...".
.truncate {
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