Skip to content

Instantly share code, notes, and snippets.

@ackernaut
Created April 16, 2012 20:29
Show Gist options
  • Save ackernaut/2401305 to your computer and use it in GitHub Desktop.
Save ackernaut/2401305 to your computer and use it in GitHub Desktop.
CSS: Text overflow with ellipsis
/* Seen in jQuery Mobile, Twitter's Bootstrap, etc. */
/* Requires inline-block or block for proper styling */
.text-overflow {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment