Last active
August 8, 2023 14:28
-
-
Save zenojunior/cec690582ab886660670b87e545a0daa to your computer and use it in GitHub Desktop.
Truncating Multiple Line Text
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
@mixin line-clampin($maxLines) { | |
display: -webkit-box; | |
overflow: hidden; | |
-webkit-line-clamp: $maxLines; | |
-webkit-box-orient: vertical; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment