Skip to content

Instantly share code, notes, and snippets.

@webbower
Created October 22, 2014 17:40
Show Gist options
  • Save webbower/71d84dace72c621e4aa5 to your computer and use it in GitHub Desktop.
Save webbower/71d84dace72c621e4aa5 to your computer and use it in GitHub Desktop.
CSS ellipsis truncation
/* http://frontendbabel.info/articles/css-tricks-by-wargaming/ */
.text-overflow {
white-space: nowrap; /* No line breaks */
overflow: hidden; /* Hide text which does not fit the block */
text-overflow: ellipsis; /* Cut off with ellipsis */
display: block; /* Works only for block elements */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment