Skip to content

Instantly share code, notes, and snippets.

@mdellanoce
Created July 6, 2012 18:18
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 mdellanoce/3061778 to your computer and use it in GitHub Desktop.
Save mdellanoce/3061778 to your computer and use it in GitHub Desktop.
Webkit text-overflow ellipsis
span {
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
span {
display: block;
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment