Skip to content

Instantly share code, notes, and snippets.

@dipesh008
Created May 29, 2013 09:41
Show Gist options
  • Save dipesh008/5669157 to your computer and use it in GitHub Desktop.
Save dipesh008/5669157 to your computer and use it in GitHub Desktop.
Using CSS3 truncate string. Truncate String with Ellipsis
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment