Skip to content

Instantly share code, notes, and snippets.

@nisrulz
Created August 1, 2015 02:44
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 nisrulz/dee6a7a7dd0e64f614d3 to your computer and use it in GitHub Desktop.
Save nisrulz/dee6a7a7dd0e64f614d3 to your computer and use it in GitHub Desktop.
Truncate text if it overflows and put ellipsis
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis; // IE 6+, FF 7+, Op 11+, Saf 1.3+, Chr 1+
-o-text-overflow: ellipsis; // for Opera 9 & 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment