Skip to content

Instantly share code, notes, and snippets.

@oppara
Created December 2, 2011 15:57
Show Gist options
  • Save oppara/1423736 to your computer and use it in GitHub Desktop.
Save oppara/1423736 to your computer and use it in GitHub Desktop.
Truncating text using only CSS
/* http://amix.dk/blog/post/19661 */
.link_truncated {
display: inline-block;
width: 275px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
vertical-align: top;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment