Created
March 29, 2020 15:17
-
-
Save adrianorsouza/9610397a97df952504e36603e20dc1bc to your computer and use it in GitHub Desktop.
CSS to make a text overflow collapse 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
.title { | |
display: block; | |
width: 100%; | |
text-overflow: ellipsis; | |
white-space: nowrap; | |
pointer-events: auto; | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment