Skip to content

Instantly share code, notes, and snippets.

@adrianorsouza
Created March 29, 2020 15:17
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 adrianorsouza/9610397a97df952504e36603e20dc1bc to your computer and use it in GitHub Desktop.
Save adrianorsouza/9610397a97df952504e36603e20dc1bc to your computer and use it in GitHub Desktop.
CSS to make a text overflow collapse with ellipsis
.title {
display: block;
width: 100%;
text-overflow: ellipsis;
white-space: nowrap;
pointer-events: auto;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment