Created
March 15, 2013 19:34
-
-
Save tevashov/5172456 to your computer and use it in GitHub Desktop.
Long strings truncation
This file contains hidden or 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
| .break { | |
| -ms-word-break: break-all; | |
| word-break: break-all; | |
| word-break: break-word; | |
| -webkit-hyphens: auto; | |
| -moz-hyphens: auto; | |
| hyphens: auto; | |
| } | |
| .ellipsis { | |
| width: 250px; | |
| white-space: nowrap; | |
| overflow: hidden; | |
| -ms-text-overflow: ellipsis; /* Required for IE8 */ | |
| -o-text-overflow: ellipsis; /* Required for Opera */ | |
| text-overflow: ellipsis; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment