Skip to content

Instantly share code, notes, and snippets.

@saqibameen
Created July 27, 2020 14:10
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 saqibameen/c5a80ae9913ccb109a034690b6bc8ae3 to your computer and use it in GitHub Desktop.
Save saqibameen/c5a80ae9913ccb109a034690b6bc8ae3 to your computer and use it in GitHub Desktop.
Limit no of characters inside your element
/*
* Limits the no of character in your element.
*/
.trim-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 75ch;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment