Created
December 12, 2012 16:28
-
-
Save rianrainey/4269273 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* http://css-tricks.com/snippets/css/truncate-string-with-ellipsis/ */ | |
.truncate { | |
width: 250px; | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} |
I just saw that FF now supports the ellipsis.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Note: The ellipsis only shows in Chrome if this class is given to the parent div. Any higher ancestor and the ellipsis doesn't work in Chrome.