Created
September 2, 2014 00:51
-
-
Save julzmon/17ad324cbc418e1267e9 to your computer and use it in GitHub Desktop.
Cut off long lines with ellipsis
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
| .text-overflow { | |
| white-space: nowrap; /* No line breaks */ | |
| overflow: hidden; /* Hide text which does not fit the block */ | |
| text-overflow: ellipsis; /* Cut off with ellipsis */ | |
| display: block; /* Works only for block elements */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment