Skip to content

Instantly share code, notes, and snippets.

@alex-boom
Created August 6, 2019 09:17
Show Gist options
  • Save alex-boom/baa83bb7272fdd2a04248afceabdf81a to your computer and use it in GitHub Desktop.
Save alex-boom/baa83bb7272fdd2a04248afceabdf81a to your computer and use it in GitHub Desktop.
two-line-overflow-elipsis
> span {
display: -webkit-box;
text-overflow: ellipsis;
overflow: hidden;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
@media screen and (min-width: $break__for_ipad) {
display: block;
-webkit-line-clamp: 1;
white-space: nowrap;
background: none;
border-radius: 0 0 5px 5px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment