Last active
January 21, 2020 12:42
-
-
Save mehmetsefabalik/a734ffbe5bc4e8d17c839ae3b1d3082b to your computer and use it in GitHub Desktop.
css text overflow example with one line and multiple lines
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
.one-line-overflow { | |
white-space: nowrap; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
} | |
.multi-line-overflow { | |
white-space: normal; | |
display: -webkit-box; | |
-webkit-box-orient: vertical; | |
-webkit-line-clamp: 2; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment