Skip to content

Instantly share code, notes, and snippets.

@ryanve
Created June 22, 2016 17:49
Show Gist options
  • Select an option

  • Save ryanve/81f2c769437ff64b6d53d67faba74443 to your computer and use it in GitHub Desktop.

Select an option

Save ryanve/81f2c769437ff64b6d53d67faba74443 to your computer and use it in GitHub Desktop.
truncate text in css
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.untruncate {
overflow: visible;
text-overflow: initial;
white-space: pre;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment