Skip to content

Instantly share code, notes, and snippets.

@qzm
Created April 27, 2016 08:36
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 qzm/1c6a4ad02d12580040cc48e45fdc4961 to your computer and use it in GitHub Desktop.
Save qzm/1c6a4ad02d12580040cc48e45fdc4961 to your computer and use it in GitHub Desktop.
ellipsis
.className {
/* Width*/
width: 200px;
white-space: nowrap;
-webkit-text-overflow: ellipsis;
-moz-text-overflow: ellipsis;
-ms-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment