Skip to content

Instantly share code, notes, and snippets.

@marioblas
Created April 29, 2014 11:49
Show Gist options
  • Save marioblas/11397898 to your computer and use it in GitHub Desktop.
Save marioblas/11397898 to your computer and use it in GitHub Desktop.
CSS - Truncate String with Ellipsis
/**
* Truncate String with Ellipsis.
*
* Source: http://css-tricks.com/snippets/css/truncate-string-with-ellipsis/
*/
.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