Skip to content

Instantly share code, notes, and snippets.

@ikurennyi
Created July 13, 2019 20:25
Show Gist options
  • Select an option

  • Save ikurennyi/a072d1b1714676d884054d66d73214b3 to your computer and use it in GitHub Desktop.

Select an option

Save ikurennyi/a072d1b1714676d884054d66d73214b3 to your computer and use it in GitHub Desktop.
/* mixin for multiline */
@mixin multiLineEllipsis($lineHeight: 1.2em, $lineCount: 1, $bgColor: white){
overflow: hidden;
position: relative;
line-height: $lineHeight;
max-height: $lineHeight * $lineCount;
text-align: justify;
margin-right: -1em;
padding-right: 1em;
&:before {
content: '...';
position: absolute;
right: 0;
bottom: 0;
}
&:after {
content: '';
position: absolute;
right: 0;
width: 1em;
height: 1em;
margin-top: 0.2em;
background: $bgColor;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment