Skip to content

Instantly share code, notes, and snippets.

@bububa
Created November 30, 2011 21:38
Show Gist options
  • Save bububa/1411023 to your computer and use it in GitHub Desktop.
Save bububa/1411023 to your computer and use it in GitHub Desktop.
Truncating text using only CSS
.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