Skip to content

Instantly share code, notes, and snippets.

@zenojunior
Last active August 8, 2023 14:28
Show Gist options
  • Save zenojunior/cec690582ab886660670b87e545a0daa to your computer and use it in GitHub Desktop.
Save zenojunior/cec690582ab886660670b87e545a0daa to your computer and use it in GitHub Desktop.
Truncating Multiple Line Text
@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