Skip to content

Instantly share code, notes, and snippets.

@nilshendriks
Created July 10, 2012 01:41
Show Gist options
  • Save nilshendriks/3080470 to your computer and use it in GitHub Desktop.
Save nilshendriks/3080470 to your computer and use it in GitHub Desktop.
Text Overflow Ellipsis
.some-class {
text-overflow: ellipsis;
overflow: hidden;
width: 14em; /* or max-width */
white-space: nowrap;
display: block; /* or inline-block */
}
/*
Note: in Chrome (Version 21.0.1180.15) this does not work correctly if -webkit-font-feature-settings:"liga", "dlig"; is set.
UpDate: No longer see this issue in Chrome.
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment