Created
August 6, 2019 09:17
-
-
Save alex-boom/baa83bb7272fdd2a04248afceabdf81a to your computer and use it in GitHub Desktop.
two-line-overflow-elipsis
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 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