Created
April 27, 2016 08:36
-
-
Save qzm/1c6a4ad02d12580040cc48e45fdc4961 to your computer and use it in GitHub Desktop.
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
.className { | |
/* Width*/ | |
width: 200px; | |
white-space: nowrap; | |
-webkit-text-overflow: ellipsis; | |
-moz-text-overflow: ellipsis; | |
-ms-text-overflow: ellipsis; | |
-o-text-overflow: ellipsis; | |
text-overflow: ellipsis; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment