Skip to content

Instantly share code, notes, and snippets.

@sobstel
Created March 18, 2011 17: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 sobstel/876466 to your computer and use it in GitHub Desktop.
Save sobstel/876466 to your computer and use it in GitHub Desktop.
Clipped text in CSS
.clipped_text {
white-space: nowrap;
width: 100%; # for IE 6
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment