Created
December 20, 2018 15:41
-
-
Save jiverson/8efd01415676ddaff2c2624d258fddcc to your computer and use it in GitHub Desktop.
Line clamping
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
.line-clamp { | |
display: -webkit-box; | |
overflow: hidden; | |
text-overflow: ellipsis; | |
white-space: normal; | |
-webkit-line-clamp: 2; | |
/* autoprefixer: ignore next */ | |
-webkit-box-orient: vertical; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Line clamping for supported browsers
https://css-tricks.com/almanac/properties/l/line-clamp/