Skip to content

Instantly share code, notes, and snippets.

@jagomf
Created November 3, 2017 12:21
Show Gist options
  • Save jagomf/640aceaea377c8886526c69ee8bdd7f2 to your computer and use it in GitHub Desktop.
Save jagomf/640aceaea377c8886526c69ee8bdd7f2 to your computer and use it in GitHub Desktop.
Limita un texto en CSS al número de líneas especificado y luego le pone elipsis
limitLines {
overflow: hidden,
display: -webkit-box,
-webkit-line-clamp: 2,
-webkit-box-orient: vertical
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment