Skip to content

Instantly share code, notes, and snippets.

@joellesenne
Created September 4, 2020 06:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joellesenne/f7a44d638143e568879a18247b088b35 to your computer and use it in GitHub Desktop.
Save joellesenne/f7a44d638143e568879a18247b088b35 to your computer and use it in GitHub Desktop.
SCSS ellipsis mixin
/* SCSS ellipsis mixin <https://codepad.co/snippet/scss-ellipsis-mixin> */
@mixin ellipsis($width: 100%) {
display: inline-block;
max-width: $width;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
/* How to use
div {
@include ellipsis;
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment