Skip to content

Instantly share code, notes, and snippets.

@simonewebdesign
Last active June 18, 2019 16:36
Show Gist options
  • Save simonewebdesign/926d37cbdc9b571719f41c95eec09c34 to your computer and use it in GitHub Desktop.
Save simonewebdesign/926d37cbdc9b571719f41c95eec09c34 to your computer and use it in GitHub Desktop.
Single line text ellipsis truncation SCSS Mixin
.my-class {
@include single-line-truncate;
}
@mixin single-line-truncate {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment