Skip to content

Instantly share code, notes, and snippets.

@ayozebarrera
Created August 21, 2014 10:53
Show Gist options
  • Save ayozebarrera/1a6fcbbac598ceabd6f5 to your computer and use it in GitHub Desktop.
Save ayozebarrera/1a6fcbbac598ceabd6f5 to your computer and use it in GitHub Desktop.
Text overflow ellipsis in multiples lines
$font-size: 20px;
$line-height: 1.4;
$lines-to-show: 22;
h2 {
display: block; /* Fallback for non-webkit */
display: -webkit-box;
max-width: 400px;
height: $font-size*$line-height*$lines-to-show; /* Fallback for non-webkit */
font-size: $font-size;
line-height: $line-height;
-webkit-line-clamp: $lines-to-show;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment