Skip to content

Instantly share code, notes, and snippets.

@Nitive
Last active August 29, 2015 14:20
Show Gist options
  • Save Nitive/f34feb0d55cc404220e3 to your computer and use it in GitHub Desktop.
Save Nitive/f34feb0d55cc404220e3 to your computer and use it in GitHub Desktop.
CSS multiline text-overflow ellipsis
/* Original code from http://codepen.io/martinwolf/pen/qlFdp */
p
font-size 21px
line-height 1.2
lines-to-show = 3
display block /* Fallback for non-webkit */
display -webkit-box
max-width 400px
height @font-size * @line-height * lines-to-show /* Fallback for non-webkit */
margin 0 auto
-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