Skip to content

Instantly share code, notes, and snippets.

@linmic
Created September 21, 2016 09:34
Show Gist options
  • Save linmic/72e84f96c0dc9be032e80a2ea789c5d4 to your computer and use it in GitHub Desktop.
Save linmic/72e84f96c0dc9be032e80a2ea789c5d4 to your computer and use it in GitHub Desktop.
/*
* author: [email protected]
* license: MIT
*/
@mixin text-clamp($line-height, $lines, $bg-color: $gray-f1f1f1) {
position: relative;
height: $line-height * $lines;
display: block;
overflow: hidden;
&::after {
content: '...';
text-align: right;
bottom: 0;
right: 0;
width: 20%;
display: block;
position: absolute;
height: $line-height;
background: linear-gradient(to right, transparent, $bg-color 75%);
}
@supports (-webkit-line-clamp: 1) {
display: -webkit-box;
-webkit-line-clamp: $lines;
-webkit-box-orient: vertical;
&::after {
display: none;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment