Skip to content

Instantly share code, notes, and snippets.

@nocodesupplyco
Created December 16, 2022 19:12
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 nocodesupplyco/94731f7f08e3e0b8dcd46021941c89a7 to your computer and use it in GitHub Desktop.
Save nocodesupplyco/94731f7f08e3e0b8dcd46021941c89a7 to your computer and use it in GitHub Desktop.
Single Line Truncate
/* Class must has a set width for this to work */
.truncate {
width: 280px;
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